fix linting issue

This commit is contained in:
Wolfsblvt 2024-07-11 01:38:28 +02:00
parent 307a579f80
commit 3983eef827
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ class PresetManager {
if (Object.keys(preset_names).length) {
const nextPresetName = Object.keys(preset_names)[0];
const newValue = preset_names[nextPresetName];
$(this.select).find(`option[value="${newValue}"]`).attr('selected', true);
$(this.select).find(`option[value="${newValue}"]`).attr('selected', 'true');
$(this.select).trigger('change');
}