Skip to content

Commit e6b73b0

Browse files
committed
fix: restore community tag in the calendar
1 parent 43becec commit e6b73b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const loadCalendar = async () => {
144144
if (patterns) {
145145
for (var j = 0; j < patterns.length; j++) {
146146
if (match[1].localeCompare(patterns[j], 'en', { sensitivity: 'base' }) === 0) {
147-
title = match[2];
147+
title = '[' + match[1] + '] ' + match[2];
148148
calendarId = communities[i].key;
149149
break;
150150
}

0 commit comments

Comments
 (0)