Fix: The right coordinates of Categorize and Switch operators are misplaced #3868 (#3869)

### What problem does this PR solve?

Fix: The right coordinates of Categorize and Switch operators are
misplaced #3868

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2024-12-05 10:53:44 +08:00
committed by GitHub
parent 5ae33184d5
commit a88a1848ff
3 changed files with 5 additions and 9 deletions

View File

@ -90,11 +90,7 @@ export const EditableCell: React.FC<EditableCellProps> = ({
<Input ref={inputRef} onPressEnter={save} onBlur={save} />
</Form.Item>
) : (
<div
className="editable-cell-value-wrap"
// style={{ paddingRight: 24 }}
onClick={toggleEdit}
>
<div onClick={toggleEdit} className="truncate">
<Text>{children}</Text>
</div>
);