hide id
This commit is contained in:
parent
19fde53e18
commit
86a003fe15
@ -13,28 +13,29 @@
|
|||||||
label-class="font-weight-bold pt-0"
|
label-class="font-weight-bold pt-0"
|
||||||
class="config-group"
|
class="config-group"
|
||||||
>
|
>
|
||||||
<b-form-group
|
<div v-for="(prop, name, idx) in configGui" :key="idx">
|
||||||
v-for="(prop, name, idx) in configGui"
|
<b-form-group
|
||||||
:key="idx"
|
v-if="idx >= 1"
|
||||||
label-cols-sm="2"
|
label-cols-sm="2"
|
||||||
:label="name"
|
:label="name"
|
||||||
label-align-sm="right"
|
label-align-sm="right"
|
||||||
:label-for="name"
|
:label-for="name"
|
||||||
>
|
>
|
||||||
<b-form-tags
|
<b-form-tags
|
||||||
v-if="name === 'extra_extensions'"
|
v-if="name === 'extra_extensions'"
|
||||||
v-model="configGui[name]"
|
v-model="configGui[name]"
|
||||||
:input-id="name"
|
:input-id="name"
|
||||||
separator=" ,;"
|
separator=" ,;"
|
||||||
:placeholder="`add ${name}...`"
|
:placeholder="`add ${name}...`"
|
||||||
class="mb-2 tags-list"
|
class="mb-2 tags-list"
|
||||||
/>
|
/>
|
||||||
<b-form-text v-if="name === 'extra_extensions'">
|
<b-form-text v-if="name === 'extra_extensions'">
|
||||||
Visible extensions only for the GUI and not the playout
|
Visible extensions only for the GUI and not the playout
|
||||||
</b-form-text>
|
</b-form-text>
|
||||||
<b-form-select v-else-if="name === 'net_interface'" :id="name" v-model="configGui[name]" :options="netChoices" :value="prop" />
|
<b-form-select v-else-if="name === 'net_interface'" :id="name" v-model="configGui[name]" :options="netChoices" :value="prop" />
|
||||||
<b-form-input v-else :id="name" v-model="configGui[name]" :value="prop" />
|
<b-form-input v-else :id="name" v-model="configGui[name]" :value="prop" />
|
||||||
</b-form-group>
|
</b-form-group>
|
||||||
|
</div>
|
||||||
</b-form-group>
|
</b-form-group>
|
||||||
<b-row>
|
<b-row>
|
||||||
<b-col cols="1" style="min-width: 85px">
|
<b-col cols="1" style="min-width: 85px">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user