refs #7366 fix icons actions
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-06-27 09:53:42 +02:00
parent aaee96d6bb
commit 95a9805a84
1 changed files with 3 additions and 3 deletions

View File

@ -132,14 +132,14 @@ const columns = computed(() => [
actions: [ actions: [
{ {
title: t('Clone'), title: t('Clone'),
icon: 'vn:ticket', icon: 'vn:clone',
action: cloneTravel, action: cloneTravel,
isPrimary: true, isPrimary: true,
}, },
{ {
title: t('Add entry'), title: t('Add entry'),
icon: 'preview', icon: 'contact_support',
action: (row) => viewSummary(row.id, TravelSummary), action: redirectCreateEntryView,
}, },
], ],
}, },