We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49cd12 commit 8966288Copy full SHA for 8966288
packages/frontend/src/pages/Tile/components/TableRow/TableCell.tsx
@@ -36,7 +36,7 @@ function TableCell({
36
table,
37
cell,
38
}: CellContext<GenericRowData, string>) {
39
- const { mode } = useTableContext()
+ const { mode, isFetching } = useTableContext()
40
const { onRightClick } = useContextMenuContext()
41
const { sortedIndex: rowIndex, className, isEditingRow } = useRowContext()
42
const textAreaRef = useRef<HTMLTextAreaElement>(null)
@@ -288,7 +288,7 @@ function TableCell({
288
_readOnly={{
289
boxShadow: CELL_BOX_SHADOW.DEFAULT,
290
}}
291
- isReadOnly={isViewMode}
+ isReadOnly={isViewMode || isFetching}
292
defaultValue={value}
293
onChange={onChange}
294
onKeyDown={onKeyDown}
0 commit comments