We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8004c0f commit 020206bCopy full SHA for 020206b
src/components/devices/solax/solax/device.vue
@@ -34,6 +34,18 @@
34
meist für Gen4 eine ID größer als 2 eingestellt. Bei Gen3 sogar (gegen jeglicher Modbus Standards) eine 0.
35
</template>
36
</openwb-base-number-input>
37
+ <openwb-base-select-input
38
+ title="Generation"
39
+ not-selected="Bitte auswählen"
40
+ :options="[
41
+ { value: 'g2', text: 'Gen 2' },
42
+ { value: 'g3', text: 'Gen 3' },
43
+ { value: 'g4', text: 'Gen 4' },
44
+ ]"
45
+ :model-value="device.configuration.version"
46
+ required
47
+ @update:model-value="updateConfiguration($event, 'configuration.version')"
48
+ />
49
</div>
50
51
0 commit comments