Add missing semicolon in style definition

This commit is contained in:
Johannes Zellner
2025-04-29 12:35:41 +02:00
parent 434bfdde67
commit 1d61d4dad4
+1 -1
View File
@@ -151,7 +151,7 @@ onMounted(async () => {
<label>{{ $t('branding.backgroundImage') }}</label>
<ImagePicker :src="backgroundUrl" @changed="onBackgroundChanged" fallback-src="/img/background-image-placeholder.svg" display-height="200px" :max-size="1280"/>
</FormGroup>
<div v-show="backgroundNew !== null" style="display: flex; position: relative; align-items: center gap: 6px">
<div v-show="backgroundNew !== null" style="display: flex; position: relative; align-items: center; gap: 6px">
<Button tool @click="onBackgroundSubmit()" :disabled="!backgroundNew || backgroundBusy" :loading="backgroundBusy">{{ $t('main.dialog.save') }}</Button>
<Button tool plain secondary @click="backgroundNew = null" :disabled="backgroundBusy">{{ $t('main.dialog.cancel') }}</Button>
</div>