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>
|
||||
<div class="control">
|
||||
<div class="control">
|
||||
<input id="random_bg" type="checkbox" class="switch is-success" v-model="simpleMode">
|
||||
<label for="random_bg" class="is-unselectable">
|
||||
<input id="view_mode" type="checkbox" class="switch is-success" v-model="simpleMode">
|
||||
<label for="view_mode" class="is-unselectable">
|
||||
{{ simpleMode ? 'Simple View' : 'Regular View' }}
|
||||
</label>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<span class="icon">
|
||||
<i class="fa-solid fa-desktop" />
|
||||
</span>
|
||||
<span class="ml-2">Console Output</span>
|
||||
<span class="ml-2">Output</span>
|
||||
</p>
|
||||
<p class="card-header-icon">
|
||||
<span v-tooltip.top="'Clear console window'" class="icon" @click="clearOutput()">
|
||||
|
|
|
|||
Loading…
Reference in a new issue