Skip to content

Commit

Permalink
JS-5398: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3orblade committed Sep 17, 2024
1 parent cf9a58c commit d8e9fa3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ts/component/block/dataview/cell/object.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ const CellObject = observer(class CellObject extends React.Component<I.Cell, Sta
};

onClick (e: any, item: any) {
U.Object.openConfig(item);
const { isEditing } = this.state;
if (isEditing) {
U.Object.openConfig(item);
};
};

placeholderCheck () {
Expand Down

0 comments on commit d8e9fa3

Please sign in to comment.