mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Prevent horizontal scrollbar
This commit is contained in:
parent
66fcab1119
commit
7b68d9ce7a
|
@ -21,8 +21,8 @@
|
|||
</b-input-group>
|
||||
</b-form-group>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<b-form-group class="col" label="Used indicators" label-for="selectedIndicators">
|
||||
<div>
|
||||
<b-form-group label="Used indicators" label-for="selectedIndicators">
|
||||
<b-form-select
|
||||
id="selectedIndicators"
|
||||
v-model="selIndicatorName"
|
||||
|
@ -61,7 +61,7 @@
|
|||
/>
|
||||
<hr />
|
||||
|
||||
<div class="row px-2">
|
||||
<div>
|
||||
<b-button class="ml-1" variant="primary" size="sm" @click="loadPlotConfig">Load</b-button>
|
||||
<b-button class="ml-1" variant="primary" size="sm" @click="loadPlotConfigFromStrategy">
|
||||
From strategy
|
||||
|
|
|
@ -111,7 +111,7 @@ export default class PlotIndicator extends Vue {
|
|||
}
|
||||
|
||||
get combinedIndicator() {
|
||||
if (this.cancelled) {
|
||||
if (this.cancelled || !this.selAvailableIndicator) {
|
||||
return {};
|
||||
}
|
||||
return {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<template>
|
||||
<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>
|
||||
</div>
|
||||
<!-- <div v-if="isWebserverMode" class="mr-auto ml-3"> -->
|
||||
<!-- Currently only available in Webserver mode -->
|
||||
<!-- <b-checkbox v-model="historicView">HistoricData</b-checkbox> -->
|
||||
<!-- </div> -->
|
||||
<div v-if="historicView" class="mx-md-3 mt-2">
|
||||
<div class="d-flex flex-wrap">
|
||||
<div class="col-md-3 text-left">
|
||||
|
@ -75,6 +75,7 @@ export default class Graphs extends Vue {
|
|||
) => Promise<AvailablePairResult>;
|
||||
|
||||
mounted() {
|
||||
this.historicView = this.isWebserverMode;
|
||||
if (!this.whitelist || this.whitelist.length === 0) {
|
||||
this.getWhitelist();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user