fix overflow, space in cell

This commit is contained in:
Sergey Krylov 2022-07-11 11:03:18 +05:00
parent 3bd194816e
commit f2ee7b8469
2 changed files with 2 additions and 1 deletions

View File

@ -130,6 +130,6 @@ export class Table extends ExcelComponent {
}
onInput(event: InputEvent) {
this.updateCurrentText((event.target as HTMLElement).innerText.trim());
this.updateCurrentText((event.target as HTMLElement).innerText);
}
}

View File

@ -48,6 +48,7 @@
border-top: 0;
border-left: 0;
white-space: nowrap;
overflow: hidden;
outline: none;
display: flex;
&:hover:not(.selected) {