chore(nc-gui): fix type issues and set proper ref types

This commit is contained in:
braks
2022-09-13 17:25:44 +02:00
parent 3320453637
commit 81db2c8435
58 changed files with 305 additions and 356 deletions

View File

@@ -59,8 +59,8 @@ onMounted(() => {
<template>
<a-select v-model:value="localChannelValues" mode="multiple" :placeholder="placeholder" max-tag-count="responsive">
<a-select-option v-for="channel of availableChannelWithIdxList" :key="channel.idx" :value="channel.idx">{{
channel.channel
}}</a-select-option>
<a-select-option v-for="channel of availableChannelWithIdxList" :key="channel.idx" :value="channel.idx">
{{ channel.channel }}
</a-select-option>
</a-select>
</template>