diff --git a/package.json b/package.json index 3d564400c..7a84602fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "12.119.0-calc.19-b9", + "version": "12.119.0-calc.19-b10", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/pages/timeline.vue b/packages/client/src/pages/timeline.vue index bfbaada9c..e00770527 100644 --- a/packages/client/src/pages/timeline.vue +++ b/packages/client/src/pages/timeline.vue @@ -144,17 +144,17 @@ function top(): void { async function chooseList(ev: MouseEvent): Promise { const lists = await os.api('users/lists/list'); - const items = lists.map((list) => ({ - type: 'link' as const, - text: list.name, - icon: '', - to: `/timeline/list/${list.id}`, - })).unshift({ + const items = [{ type: 'link' as const, text: i18n.ts.manageLists, icon: 'ph-faders-horizontal-bold ph-lg', to: '/my/lists', - }); + }].concat(lists.map((list) => ({ + type: 'link' as const, + text: list.name, + icon: '', + to: `/timeline/list/${list.id}`, + }))); os.popupMenu(items, ev.currentTarget ?? ev.target); }