Skip to content

Commit

Permalink
🧹 Forgotten underscore (#5590)
Browse files Browse the repository at this point in the history
For PR #5584
  • Loading branch information
Annelein authored Jun 4, 2024
1 parent 57c112f commit 77505a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion static/js/appbundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -103992,7 +103992,7 @@ def note_with_error(value, err):
} else {
$("#opening_date_level_" + level3).removeClass("bg-green-300").addClass("bg-gray-200");
}
if ($("#level-" + level3).is(":visible")) {
if ($("#level_" + level3).is(":visible")) {
setLevelStateIndicator(level3);
}
}
Expand Down
2 changes: 1 addition & 1 deletion static/js/appbundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/teachers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ export function setDateLevelInputColor(level: string) {
.addClass('bg-gray-200')
}

if ($('#level-' + level).is(':visible')) {
if ($('#level_' + level).is(':visible')) {
setLevelStateIndicator(level);
}
}
Expand Down

0 comments on commit 77505a8

Please sign in to comment.