|
|
@@ -18,7 +18,7 @@
|
|
|
<!-- Tab: Nova Solicitação -->
|
|
|
<div v-if="activeTab === 'novo'">
|
|
|
<div v-if="isOnLeave" class="on-leave-notice">
|
|
|
- <q-icon name="mdi-account-off-outline" size="32px" color="warning" />
|
|
|
+ <q-icon name="mdi-account-off-outline" size="32px" color="warning-light" />
|
|
|
<div class="on-leave-notice__text">{{ $t('associado.on_leave_appointment') }}</div>
|
|
|
</div>
|
|
|
|
|
|
@@ -188,7 +188,7 @@ const pagedAppointments = computed(() => {
|
|
|
});
|
|
|
|
|
|
const statusColor = (status) => {
|
|
|
- const map = { pendente: "warning", confirmado: "positive", cancelado: "negative", recusado: "negative", concluido: "grey" };
|
|
|
+ const map = { pendente: "warning-light", confirmado: "positive", cancelado: "negative", recusado: "negative", concluido: "grey" };
|
|
|
return map[status] ?? "grey";
|
|
|
};
|
|
|
|