Skip to content

Commit

Permalink
修复操作菜单上移、下移失效bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaopujun committed Apr 6, 2024
1 parent c32e490 commit 6326b4d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import {
doGrouping,
doHide,
doLock,
doMoveDown,
doMoveUp,
doUnGrouping,
doUnLock,
layerMoveDown,
layerMoveUp,
layerToBottom,
layerToTop,
removeFromGroup
Expand All @@ -42,12 +42,12 @@ const menuList = [
{
name: '上移',
icon: UpOutlined,
onClick: doMoveUp,
onClick: layerMoveUp,
},
{
name: '下移',
icon: DownOutlined,
onClick: doMoveDown,
onClick: layerMoveDown,
},
{
name: '置顶',
Expand Down

0 comments on commit 6326b4d

Please sign in to comment.