Fixes issue with simple view and background toggle due to sharing same ID. ref #431
This commit is contained in:
parent
ffeaefa93a
commit
743566efb1
2 changed files with 3 additions and 3 deletions
|
|
@ -19,8 +19,8 @@
|
||||||
</label>
|
</label>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<input id="random_bg" type="checkbox" class="switch is-success" v-model="simpleMode">
|
<input id="view_mode" type="checkbox" class="switch is-success" v-model="simpleMode">
|
||||||
<label for="random_bg" class="is-unselectable">
|
<label for="view_mode" class="is-unselectable">
|
||||||
{{ simpleMode ? 'Simple View' : 'Regular View' }}
|
{{ simpleMode ? 'Simple View' : 'Regular View' }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fa-solid fa-desktop" />
|
<i class="fa-solid fa-desktop" />
|
||||||
</span>
|
</span>
|
||||||
<span class="ml-2">Console Output</span>
|
<span class="ml-2">Output</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="card-header-icon">
|
<p class="card-header-icon">
|
||||||
<span v-tooltip.top="'Clear console window'" class="icon" @click="clearOutput()">
|
<span v-tooltip.top="'Clear console window'" class="icon" @click="clearOutput()">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue