mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Move controls into multipane
This commit is contained in:
parent
55cc721525
commit
22e3c1a976
|
@ -1,6 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="container-fluid">
|
<div>
|
||||||
<div class="row">
|
|
||||||
<button
|
<button
|
||||||
class="btn btn-secondary btn-sm ml-1"
|
class="btn btn-secondary btn-sm ml-1"
|
||||||
:disabled="!isTrading || isRunning"
|
:disabled="!isTrading || isRunning"
|
||||||
|
@ -53,7 +52,6 @@
|
||||||
</button>
|
</button>
|
||||||
<ForceBuyForm :modal-show="forcebuyShow" @close="$bvModal.hide('forcebuy-modal')" />
|
<ForceBuyForm :modal-show="forcebuyShow" @close="$bvModal.hide('forcebuy-modal')" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
|
|
@ -30,13 +30,14 @@
|
||||||
drag-allow-from=".card-header"
|
drag-allow-from=".card-header"
|
||||||
>
|
>
|
||||||
<DraggableContainer header="Multi Pane">
|
<DraggableContainer header="Multi Pane">
|
||||||
<BotControls class="mt-1" />
|
|
||||||
|
|
||||||
<b-tabs content-class="mt-3" class="mt-1">
|
<b-tabs content-class="mt-3" class="mt-1">
|
||||||
<b-tab title="Pairs combined" active>
|
<b-tab title="Pairs combined" active>
|
||||||
<PairSummary :pairlist="whitelist" :current-locks="currentLocks" :trades="openTrades" />
|
<PairSummary :pairlist="whitelist" :current-locks="currentLocks" :trades="openTrades" />
|
||||||
</b-tab>
|
</b-tab>
|
||||||
<b-tab title="Status">
|
<b-tab title="General">
|
||||||
|
<div class="d-flex justify-content-center">
|
||||||
|
<BotControls class="mt-1 mb-2" />
|
||||||
|
</div>
|
||||||
<BotStatus />
|
<BotStatus />
|
||||||
</b-tab>
|
</b-tab>
|
||||||
<b-tab title="Performance">
|
<b-tab title="Performance">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user