From 95a9805a842cc802059c33f65534cf32b3d60878 Mon Sep 17 00:00:00 2001 From: carlossa Date: Thu, 27 Jun 2024 09:53:42 +0200 Subject: [PATCH] refs #7366 fix icons actions --- src/pages/Travel/TravelList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Travel/TravelList.vue b/src/pages/Travel/TravelList.vue index eca79d690..1e616a937 100644 --- a/src/pages/Travel/TravelList.vue +++ b/src/pages/Travel/TravelList.vue @@ -132,14 +132,14 @@ const columns = computed(() => [ actions: [ { title: t('Clone'), - icon: 'vn:ticket', + icon: 'vn:clone', action: cloneTravel, isPrimary: true, }, { title: t('Add entry'), - icon: 'preview', - action: (row) => viewSummary(row.id, TravelSummary), + icon: 'contact_support', + action: redirectCreateEntryView, }, ], },