diff --git a/www/src/components/Table/editors/TextEditor.tsx b/www/src/components/Table/editors/TextEditor.tsx index 7d3390ee..c58719ed 100644 --- a/www/src/components/Table/editors/TextEditor.tsx +++ b/www/src/components/Table/editors/TextEditor.tsx @@ -92,6 +92,9 @@ class TextEditor extends React.Component< } type={inputType} fullWidth + onBlur={(e) => { + row.ref.update({ [column.key]: e.target.value }); + }} variant="standard" inputProps={{ ref: this.inputRef,