diff --git a/fe/src/pages/ListsPage.vue b/fe/src/pages/ListsPage.vue index 087af35..b223eb6 100644 --- a/fe/src/pages/ListsPage.vue +++ b/fe/src/pages/ListsPage.vue @@ -29,14 +29,25 @@
+ @touchend.passive="handleTouchEnd" @touchcancel.passive="handleTouchEnd" :data-list-id="list.id" + :ref="el => setListCardRef(el, list.id)">
{{ list.name }} - +
+ ... +
+
    +
  • + + {{ list.archived_at ? 'Unarchive' : 'Archive' }} +
  • +
  • + + Delete +
  • +
+
+
{{ list.description || t('listsPage.noDescription') }}