diff --git a/src/pages/schedule/components/ScheduleTable.vue b/src/pages/schedule/components/ScheduleTable.vue index 89661bc..b5cb01a 100644 --- a/src/pages/schedule/components/ScheduleTable.vue +++ b/src/pages/schedule/components/ScheduleTable.vue @@ -70,9 +70,9 @@ export default { this.setActiveButton(); return { "--bg-color-status": this.activeButton?.color, - "--text-status": !this.template.item?.label + "--text-status": !this.template.item?.symbol ? this.activeButton?.text - : this.template.item.symbol, + : this.template.item?.symbol, }; }, }, @@ -157,7 +157,7 @@ export default { if (resStart || resMiddle || resEnd) return { "set-template": !!this.template.item?.label, - status: !!this.activeButton && !this.template.item, + status: !!this.activeButton, "set-date": !this.activeButton, }; },