Skip to content

Commit

Permalink
fix(core): edit tag should not jump to its detail
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Sep 3, 2024
1 parent 106f332 commit 0a8e087
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,10 @@ export const TagOperationCell = ({
<IconButton
tooltip={t['Rename']()}
tooltipOptions={tooltipSideTop}
onClick={() => setOpen(true)}
onClick={e => {
e.preventDefault();
setOpen(true);
}}
>
<EditIcon />
</IconButton>
Expand Down

0 comments on commit 0a8e087

Please sign in to comment.