diff --git a/packages/frontend/src/ui/deck/column.vue b/packages/frontend/src/ui/deck/column.vue index 6b4acba490..1a6b833b45 100644 --- a/packages/frontend/src/ui/deck/column.vue +++ b/packages/frontend/src/ui/deck/column.vue @@ -179,6 +179,11 @@ function getMenu() { }, }]; + if (props.menu) { + items.unshift(null); + items = props.menu.concat(items); + } + if (props.refresher) { items = [{ icon: 'ti ti-refresh', @@ -191,11 +196,6 @@ function getMenu() { }, ...items]; } - if (props.menu) { - items.unshift(null); - items = props.menu.concat(items); - } - return items; }