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>
|
<details open>
|
||||||
<summary>{{ $t('general.generic_error_details') }}</summary>
|
<summary>{{ $t('general.generic_error_details') }}</summary>
|
||||||
<code class="stack pre" v-text="error.stack" />
|
<code
|
||||||
|
class="stack pre"
|
||||||
|
v-text="error.stack"
|
||||||
|
/>
|
||||||
</details>
|
</details>
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,10 @@
|
||||||
|
|
||||||
<details v-if="details">
|
<details v-if="details">
|
||||||
<summary>{{ $t('general.generic_error_details') }}</summary>
|
<summary>{{ $t('general.generic_error_details') }}</summary>
|
||||||
<code class="stack pre" v-text="details" />
|
<code
|
||||||
|
class="stack pre"
|
||||||
|
v-text="details"
|
||||||
|
/>
|
||||||
</details>
|
</details>
|
||||||
</template>
|
</template>
|
||||||
</ErrorModal>
|
</ErrorModal>
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,11 @@
|
||||||
:class="{ '-compact': compact, '-apply': apply, '-mobile': mobile }"
|
:class="{ '-compact': compact, '-apply': apply, '-mobile': mobile }"
|
||||||
>
|
>
|
||||||
<div class="palette">
|
<div class="palette">
|
||||||
<div v-for="key in paletteKeys">
|
<div
|
||||||
|
v-for="key in paletteKeys"
|
||||||
|
:key="key"
|
||||||
|
>
|
||||||
<ColorInput
|
<ColorInput
|
||||||
:key="key"
|
|
||||||
:name="key"
|
:name="key"
|
||||||
:model-value="props.modelValue[key]"
|
:model-value="props.modelValue[key]"
|
||||||
:fallback="fallback(key)"
|
:fallback="fallback(key)"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue