mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fix for JS warning in table widget
This commit is contained in:
parent
769b58af41
commit
86815f2a81
1 changed files with 1 additions and 1 deletions
|
|
@ -275,8 +275,8 @@ export function Table({
|
||||||
onBlur={(e) => {
|
onBlur={(e) => {
|
||||||
handleCellValueChange(cell.row.index, column.key || column.name, e.target.value, cell.row.original);
|
handleCellValueChange(cell.row.index, column.key || column.name, e.target.value, cell.row.original);
|
||||||
}}
|
}}
|
||||||
|
value={cellValue}
|
||||||
>
|
>
|
||||||
{cellValue}
|
|
||||||
</textarea>;
|
</textarea>;
|
||||||
} if (columnType === 'dropdown') {
|
} if (columnType === 'dropdown') {
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue