Don't use component alias

This commit is contained in:
Matthias 2022-10-30 11:15:40 +01:00
parent 1417be6fcb
commit 81541bf861
3 changed files with 8 additions and 6 deletions

View File

@ -69,7 +69,9 @@
</template>
<b-dropdown-item>V: {{ settingsStore.uiVersion }}</b-dropdown-item>
<router-link class="dropdown-item" to="/settings">Settings</router-link>
<b-checkbox v-model="layoutStore.layoutLocked" class="pl-5">Lock layout</b-checkbox>
<b-form-checkbox v-model="layoutStore.layoutLocked" class="pl-5"
>Lock layout</b-form-checkbox
>
<b-dropdown-item @click="resetDynamicLayout">Reset Layout</b-dropdown-item>
<router-link
v-if="botStore.botCount === 1"

View File

@ -2,7 +2,7 @@
<div class="d-flex flex-column h-100">
<!-- <div v-if="isWebserverMode" class="mr-auto ml-3"> -->
<!-- Currently only available in Webserver mode -->
<!-- <b-checkbox v-model="historicView">HistoricData</b-checkbox> -->
<!-- <b-form-checkbox v-model="historicView">HistoricData</b-form-checkbox> -->
<!-- </div> -->
<div v-if="botStore.activeBot.isWebserverMode" class="mx-md-3 mt-2">
<div class="d-flex flex-wrap">

View File

@ -6,7 +6,7 @@
<b-form-group
description="Lock dynamic layouts, so they cannot move anymore. Can also be set from the navbar at the top."
>
<b-checkbox v-model="layoutStore.layoutLocked">Lock layout</b-checkbox>
<b-form-checkbox v-model="layoutStore.layoutLocked">Lock layout</b-form-checkbox>
</b-form-group>
<b-form-group description="Reset dynamic layouts to how they were.">
<b-button size="sm" @click="resetDynamicLayout">Reset layout</b-button>
@ -30,11 +30,11 @@
></b-form-select>
</b-form-group>
<b-form-group description="Keep background sync running while other bots are selected.">
<b-checkbox v-model="settingsStore.backgroundSync">Background sync</b-checkbox>
<b-form-checkbox v-model="settingsStore.backgroundSync">Background sync</b-form-checkbox>
</b-form-group>
<b-form-group description="Use Heikin Ashi candles in your charts">
<b-checkbox v-model="settingsStore.useHeikinAshiCandles"
>Use Heikin Ashi candles.</b-checkbox
<b-form-checkbox v-model="settingsStore.useHeikinAshiCandles"
>Use Heikin Ashi candles.</b-form-checkbox
>
</b-form-group>
</div>