Merge branch 'feat/build-docker-image-on-push-to-main-branch'

This commit is contained in:
Manuel Schmid
2024-05-28 00:22:37 +02:00
2 changed files with 9 additions and 4 deletions
+3 -1
View File
@@ -2,8 +2,10 @@ name: Create and publish a container image
on: on:
push: push:
branches:
- main
tags: tags:
- 'v*' - v*
jobs: jobs:
build-and-push-image: build-and-push-image:
+6 -3
View File
@@ -81,9 +81,12 @@ function refresh_style_localization() {
} }
function refresh_aspect_ratios_label(value) { function refresh_aspect_ratios_label(value) {
label = document.querySelector('#aspect_ratios_accordion div span[data-original-text="Aspect Ratios"]') label = document.querySelector('#aspect_ratios_accordion div span[data-original-text="Aspect Ratios"]');
translation = getTranslation("Aspect Ratios") translation = getTranslation("Aspect Ratios");
label.textContent = translation + " " + htmlDecode(value) if (typeof translation == "undefined") {
translation = "Aspect Ratios";
}
label.textContent = translation + " " + htmlDecode(value);
} }
function localizeWholePage() { function localizeWholePage() {