mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix bug that made text type table cells not editable (#248)
This commit is contained in:
parent
134e2f51ca
commit
c2234b6dea
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ export function Table({
|
|||
onBlur={(e) => {
|
||||
handleCellValueChange(cell.row.index, column.key || column.name, e.target.value, cell.row.original);
|
||||
}}
|
||||
value={cellValue}
|
||||
defaultValue={cellValue}
|
||||
>
|
||||
</textarea>;
|
||||
} if (columnType === 'dropdown') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue