Skip to content

Commit 9e86c41

Browse files
committed
Bocal Stand-up has been rebranded into Bocal Q&A
1 parent 9e5372d commit 9e86c41

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/uis/calendar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class CalendarUI {
116116
// Main element
117117
const calendarEvent = document.createElement('div');
118118
calendarEvent.classList.add('calendar-event');
119-
calendarEvent.setAttribute("data-event-kind", (event.name.toLowerCase().includes("bocal stand-up") ? "standup" : event.kind));
119+
calendarEvent.setAttribute("data-event-kind", (event.name.toLowerCase().includes("bocal q&a") ? "standup" : event.kind));
120120
calendarEvent.setAttribute("data-event-id", event.id.toString());
121121
calendarEvent.setAttribute("data-event-timestamp", beginDate.getTime().toString());
122122

static/css/dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
--event-color-default: #00BABC;
3232
--event-color-exam: #ED8179;
3333
--event-color-association: #7E93D4;
34-
--event-color-standup: #8E9C9C; /* Bocal Stand-up */
34+
--event-color-standup: #8E9C9C; /* Bocal Q&A */
3535
--event-color-workshop: #39D88F;
3636
--event-color-rush: #F2911A;
3737
--event-color: var(--event-color-default); /* fallback */

static/css/light.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
--event-color-default: #00BABC;
3232
--event-color-exam: #ED8179;
3333
--event-color-association: #7E93D4;
34-
--event-color-standup: #8E9C9C; /* Bocal Stand-up */
34+
--event-color-standup: #8E9C9C; /* Bocal Q&A */
3535
--event-color-workshop: #39D88F;
3636
--event-color-rush: #F2911A;
3737
--event-color: var(--event-color-default); /* fallback */

0 commit comments

Comments
 (0)