Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Dec 10, 2024
1 parent 3c4ba55 commit 0118512
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,10 @@ class Toolbar {
i18next.changeLanguage(
in_language === 'en' ? 'default' : in_language
);
translationSelect
.val(i18next.language === 'en' ? 'default' : in_language)
// .trigger('input');
translationSelect.val(
i18next.language === 'en' ? 'default' : in_language
);
// .trigger('input');
$(document).localize();
}

Expand Down

0 comments on commit 0118512

Please sign in to comment.