Skip to content

Commit 3ef663c

Browse files
authored
fix: do not set textContent on undefined when no translation was given #2 (lllyasviel#3046)
* fix: do not set textContent on undefined when no translation was given
1 parent bf70815 commit 3ef663c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/localization.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function refresh_style_localization() {
8181
}
8282

8383
function refresh_aspect_ratios_label(value) {
84-
label = document.querySelector('#aspect_ratios_accordion div span[data-original-text="Aspect Ratios"]');
84+
label = document.querySelector('#aspect_ratios_accordion div span');
8585
translation = getTranslation("Aspect Ratios");
8686
if (typeof translation == "undefined") {
8787
translation = "Aspect Ratios";

0 commit comments

Comments
 (0)