Localization hotfix

This commit is contained in:
Cohee
2023-11-13 01:45:46 +02:00
parent 8ff4599e8a
commit e29bcde1d3
2 changed files with 7 additions and 7 deletions

View File

@ -460,7 +460,7 @@ async function switchLabMode() {
.attr('min', '-99999')
.attr('max', '99999')
.attr('step', '0.001')
$("#labModeWarning").removeClass('hidden')
$("#labModeWarning").removeClass('displayNone')
//$("#advanced-ai-config-block input[type='range']").hide()
} else {
@ -473,7 +473,7 @@ async function switchLabMode() {
.trigger('input')
});
$("#advanced-ai-config-block input[type='range']").show()
$("#labModeWarning").addClass('hidden')
$("#labModeWarning").addClass('displayNone')
}
}