Fix build
(Never wanna merge again)
This commit is contained in:
@@ -84,17 +84,19 @@ const validateFallbackMode = (event) => {
|
||||
default="true"
|
||||
></Checkbox>
|
||||
|
||||
<div class="mb-3 form-check">
|
||||
<input type="checkbox" class="form-check-input" id="keep_sink_default" v-model="config.keep_sink_default" true-value="enabled" false-value="disabled"/>
|
||||
<label for="keep_sink_default" class="form-check-label">{{ $t('config.keep_sink_default') }}</label>
|
||||
<div class="form-text pre-wrap">{{ $t('config.keep_sink_default_desc') }}</div>
|
||||
</div>
|
||||
<Checkbox class="mb-3"
|
||||
id="keep_sink_default"
|
||||
locale-prefix="config"
|
||||
v-model="config.keep_sink_default"
|
||||
default="true"
|
||||
></Checkbox>
|
||||
|
||||
<div class="mb-3 form-check">
|
||||
<input type="checkbox" class="form-check-input" id="auto_capture_sink" v-model="config.auto_capture_sink" true-value="enabled" false-value="disabled"/>
|
||||
<label for="auto_capture_sink" class="form-check-label">{{ $t('config.auto_capture_sink') }}</label>
|
||||
<div class="form-text pre-wrap">{{ $t('config.auto_capture_sink_desc') }}</div>
|
||||
</div>
|
||||
<Checkbox class="mb-3"
|
||||
id="auto_capture_sink"
|
||||
locale-prefix="config"
|
||||
v-model="config.auto_capture_sink"
|
||||
default="true"
|
||||
></Checkbox>
|
||||
</template>
|
||||
</PlatformLayout>
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ onMounted(() => {
|
||||
<div id="global_prep_cmd" class="mb-3 d-flex flex-column">
|
||||
<label class="form-label">{{ $t('config.global_prep_cmd') }}</label>
|
||||
<div class="form-text">{{ $t('config.global_prep_cmd_desc') }}</div>
|
||||
<table class="table" v-if="config.global_prep_cmd.length > 0">
|
||||
<table class="table" v-if="globalPrepCmd.length > 0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col"><i class="fas fa-play"></i> {{ $t('_common.do_cmd') }}</th>
|
||||
@@ -111,7 +111,7 @@ onMounted(() => {
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(c, i) in config.global_prep_cmd">
|
||||
<tr v-for="(c, i) in globalPrepCmd">
|
||||
<td>
|
||||
<input type="text" class="form-control monospace" v-model="c.do" />
|
||||
</td>
|
||||
@@ -191,18 +191,20 @@ onMounted(() => {
|
||||
</div>
|
||||
|
||||
<!-- Enable Pairing -->
|
||||
<div class="mb-3 form-check">
|
||||
<input type="checkbox" class="form-check-input" id="enable_pairing" v-model="config.enable_pairing" true-value="enabled" false-value="disabled"/>
|
||||
<label for="enable_pairing" class="form-check-label">{{ $t('config.enable_pairing') }}</label>
|
||||
<div class="form-text">{{ $t('config.enable_pairing_desc') }}</div>
|
||||
</div>
|
||||
<Checkbox class="mb-3"
|
||||
id="enable_pairing"
|
||||
locale-prefix="config"
|
||||
v-model="config.enable_pairing"
|
||||
default="true"
|
||||
></Checkbox>
|
||||
|
||||
<!-- Hide Tray Controls -->
|
||||
<div class="mb-3 form-check">
|
||||
<input type="checkbox" class="form-check-input" id="hide_tray_controls" v-model="config.hide_tray_controls" true-value="enabled" false-value="disabled"/>
|
||||
<label for="hide_tray_controls" class="form-check-label">{{ $t('config.hide_tray_controls') }}</label>
|
||||
<div class="form-text">{{ $t('config.hide_tray_controls_desc') }}</div>
|
||||
</div>
|
||||
<Checkbox class="mb-3"
|
||||
id="hide_tray_controls"
|
||||
locale-prefix="config"
|
||||
v-model="config.hide_tray_controls"
|
||||
default="false"
|
||||
></Checkbox>
|
||||
|
||||
<!-- Notify Pre-Releases -->
|
||||
<Checkbox class="mb-3"
|
||||
|
||||
@@ -55,7 +55,7 @@ function addRemappingEntry() {
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#panelsStayOpen-collapseOne">
|
||||
{{ $t('config.dd_options_header') }}
|
||||
{{ $t('config.dd_options_header') }} {{ $t('dd_options_header_vdd_na') }}
|
||||
</button>
|
||||
</h2>
|
||||
<div id="panelsStayOpen-collapseOne" class="accordion-collapse collapse show"
|
||||
|
||||
Reference in New Issue
Block a user