Skip to content

Commit

Permalink
Fix js invalid token
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoJokhan committed Aug 31, 2023
1 parent 1f7bfdc commit 54cf429
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function setSelectedLanguage(language) {
}

function syncOtherTranslationWidgets(language) {
document.querySelectorAll("#translation-widget-select").forEach(select => {
document.querySelectorAll("#translation-widget-select").forEach(function(select) {
select.value = language ? language : 'nl';
});
}

1 comment on commit 54cf429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Published new image: openstad/frontend:feature-deepl-translation-widget-in-menu-54cf429

Please sign in to comment.