forked from AkkomaGang/akkoma-fe
fix optional color inputs
This commit is contained in:
parent
48fd8a66ad
commit
115f38c422
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
:modelValue="present"
|
||||
:disabled="disabled"
|
||||
class="opt"
|
||||
@change="$emit('update:modelValue', typeof value === 'undefined' ? fallback : undefined)"
|
||||
@update:modelValue="$emit('update:modelValue', typeof modelValue === 'undefined' ? fallback : undefined)"
|
||||
/>
|
||||
<div class="input color-input-field">
|
||||
<input
|
||||
|
@ -91,6 +91,7 @@ export default {
|
|||
default: true
|
||||
}
|
||||
},
|
||||
emits: ['update:modelValue'],
|
||||
computed: {
|
||||
present () {
|
||||
return typeof this.modelValue !== 'undefined'
|
||||
|
|
Loading…
Reference in a new issue