feat: add new params to myEntries
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-08-21 15:25:33 +02:00
parent f9fd1c1f90
commit 28a82a08ef
2 changed files with 8 additions and 1 deletions

View File

@ -46,6 +46,7 @@ globals:
summary:
basicData: Datos básicos
daysOnward: Días adelante
daysBackward: Días atrás
today: Hoy
yesterday: Ayer
dateFormat: es-ES

View File

@ -78,7 +78,13 @@ const columns = computed(() => [
{
align: 'left',
label: t('globals.daysOnward'),
name: 'days',
name: 'daysAfter',
visible: false,
},
{
align: 'left',
label: t('globals.daysBackward'),
name: 'daysBefore',
visible: false,
},
{