소스 검색

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 주 전
부모
커밋
f642cf5346
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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');
 };