make path to configs read only
This commit is contained in:
parent
6b0913cf75
commit
8018aad9e2
@ -40,7 +40,13 @@
|
||||
Visible extensions only for the GUI and not the playout
|
||||
</b-form-text>
|
||||
<b-form-select v-else-if="name === 'net_interface'" :id="name" v-model="configGui[configID][name]" :options="netChoices" :value="prop" />
|
||||
<b-form-input v-else :id="name" v-model="configGui[configID][name]" :value="prop" />
|
||||
<b-form-input
|
||||
v-else
|
||||
:id="name"
|
||||
v-model="configGui[configID][name]"
|
||||
:value="prop"
|
||||
:disabled="(name === 'playout_config' || name === 'engine_service') ? true : false"
|
||||
/>
|
||||
</b-form-group>
|
||||
</div>
|
||||
</b-form-group>
|
||||
|
Loading…
Reference in New Issue
Block a user