mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-24 04:27:27 +08:00
@@ -492,7 +492,13 @@ export const TagOperationCell = ({
|
|||||||
<IconButton
|
<IconButton
|
||||||
tooltip={t['Rename']()}
|
tooltip={t['Rename']()}
|
||||||
tooltipOptions={tooltipSideTop}
|
tooltipOptions={tooltipSideTop}
|
||||||
onClick={() => setOpen(true)}
|
onClick={useCallback(
|
||||||
|
(e: React.MouseEvent<HTMLButtonElement>) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setOpen(true);
|
||||||
|
},
|
||||||
|
[setOpen]
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
<EditIcon />
|
<EditIcon />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
|||||||
Reference in New Issue
Block a user