From 673ab3689a130794d7c9488e7093ad81066a8bf0 Mon Sep 17 00:00:00 2001 From: Michael Wedl Date: Thu, 30 Nov 2023 08:35:27 +0100 Subject: [PATCH] Designer UI bugfixes --- frontend/src/components/Design/LayoutComponentForm.vue | 8 ++++++++ frontend/src/components/Design/designer-components.ts | 10 ++++++---- frontend/src/components/Markdown/Field.vue | 1 + 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Design/LayoutComponentForm.vue b/frontend/src/components/Design/LayoutComponentForm.vue index 7a74bb03e..fd209cc20 100644 --- a/frontend/src/components/Design/LayoutComponentForm.vue +++ b/frontend/src/components/Design/LayoutComponentForm.vue @@ -5,6 +5,7 @@ v-model="form.headline.text" label="Headline" :disabled="props.disabled" + spellcheck="false" class="mb-4" /> @@ -64,6 +66,7 @@ v-model="form.chart.caption" label="Caption" :disabled="props.disabled" + spellcheck="false" class="mb-4" /> @@ -71,12 +74,14 @@ @@ -108,6 +113,7 @@ v-model="form.header.backgroundColor" label="Header background color (optional)" hint="CSS value: #ff0000 or rgb(255, 0, 0) or red" + spellcheck="false" class="mb-4" :disabled="props.disabled" /> @@ -116,6 +122,7 @@ @@ -139,6 +146,7 @@ v-model="form.findingList.headline" label="Chapter Headline" :disabled="props.disabled" + spellcheck="false" class="mb-4" /> -

{{ finding.title }}

+ +

{{ finding.title }}

+ @@ -565,9 +567,9 @@ export class FindingsChapterComponent extends DesignerComponentBase {
    - +
  • + +
diff --git a/frontend/src/components/Markdown/Field.vue b/frontend/src/components/Markdown/Field.vue index de2cfd74e..71eeafcc1 100644 --- a/frontend/src/components/Markdown/Field.vue +++ b/frontend/src/components/Markdown/Field.vue @@ -35,5 +35,6 @@ function onControlClick() { .v-field__input { padding: 0 1px !important; cursor: initial !important; + row-gap: 0; }