Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kuosman committed Sep 27, 2024
1 parent 6b08c60 commit bfe2a32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MMM-school-schedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Module.register('MMM-school-schedule', {
document.createTextNode(this.translate('clock'))
);
thead_tr_th_clock.className =
'school-schedule-th' + self.config.large ? ' large' : '';
'school-schedule-th' + (self.config.large ? ' large' : '');
thead_tr.appendChild(thead_tr_th_clock);

// Create body
Expand All @@ -139,7 +139,7 @@ Module.register('MMM-school-schedule', {
const thead_tr_th_day = document.createElement('th');

thead_tr_th_day.className =
'school-schedule-th' + self.config.large ? ' large' : '';
'school-schedule-th' + (self.config.large ? ' large' : '');
thead_tr_th_day.appendChild(
document.createTextNode(localeDay.toUpperCase())
);
Expand Down

0 comments on commit bfe2a32

Please sign in to comment.