mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Adapt to recommended style guides
This commit is contained in:
parent
71137d38a5
commit
b4d185c998
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<b-form-group label="Strategy" label-for="strategyName" invalid-feedback="Strategy is required">
|
||||
<b-form-select :options="strategyList" v-model="strategy" @change="strategyChanged">
|
||||
<b-form-select v-model="strategy" :options="strategyList" @change="strategyChanged">
|
||||
</b-form-select>
|
||||
</b-form-group>
|
||||
</template>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<b-checkbox v-model="historicView">HistoricData</b-checkbox>
|
||||
</div>
|
||||
<div class="col-mb-2 ml-2 mr-2">
|
||||
<b-button @click="refresh" :disabled="!!!pair">↻</b-button>
|
||||
<b-button :disabled="!!!pair" @click="refresh">↻</b-button>
|
||||
</div>
|
||||
<div class="col-mb-2">
|
||||
<b-select v-model="pair" :options="historicView ? pairlist : whitelist" @change="refresh">
|
||||
|
|
Loading…
Reference in New Issue
Block a user