Skip to content

Commit

Permalink
Fix image readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Mar 15, 2024
1 parent 57c0cc4 commit 61baed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/cells/image-cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const imageCellRenderer: InternalCellRenderer<ImageCell> = {
return (
<ImageEditor
urls={value.data}
canWrite={value.readonly !== false}
canWrite={value.readonly !== true}
onCancel={onFinishedEditing}
onChange={newImage => {
onFinishedEditing({
Expand Down

0 comments on commit 61baed7

Please sign in to comment.