Skip to content

Commit

Permalink
Merge branch 'main' into make-response
Browse files Browse the repository at this point in the history
  • Loading branch information
jpelay committed Jun 4, 2024
2 parents 9a335cc + 254f68c commit b561848
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/hhatto/autopep8
rev: v2.1.1
rev: v2.2.0
hooks:
- id: autopep8
- repo: https://github.com/pycqa/flake8
Expand Down
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/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 b561848

Please sign in to comment.