Sfoglia il codice sorgente

fix: :bug: fix(próximos-servicos) corrigindo traducao

foi corrigida a chave de uma das traducoes existentes dentro do bloco nextschedules

fase:dev | origin:bug-interno
Gustavo Zanatta 2 settimane fa
parent
commit
f642cf5346
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/components/dashboard/DashboardNextSchedules.vue

+ 1 - 1
src/components/dashboard/DashboardNextSchedules.vue

@@ -108,7 +108,7 @@ const addressIcon = (type) => type === 'home' ? 'mdi-home-outline' : 'mdi-office
 const addressLabel = (type) => {
   if (type === 'home') return t('address.types.commercial.home');
   if (type === 'apartment') return t('dashboard_client.next_schedules.place_apartment');
-  if (type === 'commercial') return t('address.types.commercial');
+  if (type === 'commercial') return t('address.types.commercial.commercial');
   return t('dashboard_client.next_schedules.place_unknown');
 };