feat: replace obsolete spinners with branded UI loading component

This commit is contained in:
2026-03-04 11:17:16 -05:00
parent b45f53417a
commit 84e98b6213
10 changed files with 179 additions and 21 deletions

View File

@ -6,6 +6,7 @@ import { formatTo12Hour } from '@/utils/timeFormatter'
import { analyticsService } from '@/services/analyticsService'
import { useRoute } from 'vue-router'
import { useI18n } from 'vue-i18n'
import LoadingBranded from '@/components/common/LoadingBranded.vue'
const route = useRoute()
const { t } = useI18n()
@ -295,8 +296,7 @@ onUnmounted(() => {
<!-- Loading -->
<div v-if="scheduleStore.isLoading" class="state-center">
<div class="spinner"></div>
<p>{{ t('schedules.loading') || 'Cargando horarios...' }}</p>
<LoadingBranded :message="t('schedules.loading') || 'Cargando horarios...'" icon="schedule" />
</div>
<!-- Sin resultados en el filtro -->