lint
This commit is contained in:
parent
fe7315bdb5
commit
6c9b4a48d8
3 changed files with 12 additions and 4 deletions
|
|
@ -25,7 +25,10 @@
|
|||
|
||||
<details open>
|
||||
<summary>{{ $t('general.generic_error_details') }}</summary>
|
||||
<code class="stack pre" v-text="error.stack" />
|
||||
<code
|
||||
class="stack pre"
|
||||
v-text="error.stack"
|
||||
/>
|
||||
</details>
|
||||
</slot>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
|
||||
<details v-if="details">
|
||||
<summary>{{ $t('general.generic_error_details') }}</summary>
|
||||
<code class="stack pre" v-text="details" />
|
||||
<code
|
||||
class="stack pre"
|
||||
v-text="details"
|
||||
/>
|
||||
</details>
|
||||
</template>
|
||||
</ErrorModal>
|
||||
|
|
|
|||
|
|
@ -4,9 +4,11 @@
|
|||
:class="{ '-compact': compact, '-apply': apply, '-mobile': mobile }"
|
||||
>
|
||||
<div class="palette">
|
||||
<div v-for="key in paletteKeys">
|
||||
<div
|
||||
v-for="key in paletteKeys"
|
||||
:key="key"
|
||||
>
|
||||
<ColorInput
|
||||
:key="key"
|
||||
:name="key"
|
||||
:model-value="props.modelValue[key]"
|
||||
:fallback="fallback(key)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue