diff --git a/client/src/components/content-blocks/Instruction.vue b/client/src/components/content-blocks/Instruction.vue
index 5c9fb847..3e32d1e8 100644
--- a/client/src/components/content-blocks/Instruction.vue
+++ b/client/src/components/content-blocks/Instruction.vue
@@ -6,6 +6,7 @@
{{ text }}
diff --git a/client/src/components/content-blocks/InstrumentWidget.vue b/client/src/components/content-blocks/InstrumentWidget.vue
index fdfd5cbd..b17fc74e 100644
--- a/client/src/components/content-blocks/InstrumentWidget.vue
+++ b/client/src/components/content-blocks/InstrumentWidget.vue
@@ -6,11 +6,12 @@
v-html="value.description"
/>
{{ $flavor.textInstrument }} anzeigen
diff --git a/client/src/layouts/SimpleLayout.vue b/client/src/layouts/SimpleLayout.vue
index 1370e40e..52ac2b28 100644
--- a/client/src/layouts/SimpleLayout.vue
+++ b/client/src/layouts/SimpleLayout.vue
@@ -5,6 +5,7 @@
>
@@ -34,6 +35,10 @@ const enableFooter = computed(() => {
return flavor.showFooter;
});
+const showCloseButton = computed(() => {
+ return !Object.keys(route.query).includes('hideCloseButton');
+});
+
const back = () => {
router.go(-1);
};