Optional options in UI property control become dropdown

This commit is contained in:
Joe Knapper 2026-02-12 22:35:41 +00:00 committed by Julian Stirling
parent 89c5ea6886
commit ae81520494
4 changed files with 37 additions and 0 deletions

View file

@ -4,6 +4,7 @@
:data-schema="propertyDescription"
:label="label"
:animate="animate"
:options="options"
@request-update="readProperty"
@send-value="writeProperty"
@animation-shown="resetAnimate"
@ -44,6 +45,11 @@ export default {
default: 1000,
required: false,
},
options: {
type: Array,
default: () => [],
required: false,
},
},
data() {