mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 20:15:15 +00:00
Update some form fields to use proper namings
This commit is contained in:
parent
d07e1d229c
commit
775481da6b
|
@ -46,13 +46,13 @@
|
|||
>
|
||||
|
||||
<div class="ml-2">
|
||||
<b-select
|
||||
<b-form-select
|
||||
v-model="plotStore.plotConfigName"
|
||||
:options="plotStore.availablePlotConfigNames"
|
||||
size="sm"
|
||||
@change="plotStore.plotConfigChanged"
|
||||
>
|
||||
</b-select>
|
||||
</b-form-select>
|
||||
</div>
|
||||
|
||||
<div class="ml-2 mr-0 mr-md-1">
|
||||
|
|
|
@ -107,14 +107,14 @@
|
|||
>
|
||||
</div>
|
||||
<div v-if="showConfig" class="col-mb-5 ml-1 mt-2">
|
||||
<b-textarea
|
||||
<b-form-textarea
|
||||
id="TextArea"
|
||||
v-model="plotConfigJson"
|
||||
class="textArea"
|
||||
size="sm"
|
||||
:state="tempPlotConfigValid"
|
||||
>
|
||||
</b-textarea>
|
||||
</b-form-textarea>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -136,7 +136,6 @@ export default defineComponent({
|
|||
columns: { required: true, type: Array as () => string[] },
|
||||
asModal: { required: false, default: true, type: Boolean },
|
||||
},
|
||||
emits: ['input'],
|
||||
setup() {
|
||||
const plotStore = usePlotConfigStore();
|
||||
|
||||
|
|
|
@ -44,14 +44,14 @@
|
|||
label-for="ordertype-input"
|
||||
invalid-feedback="OrderType"
|
||||
>
|
||||
<b-select
|
||||
<b-form-select
|
||||
v-model="ordertype"
|
||||
class="ml-2"
|
||||
:options="['market', 'limit']"
|
||||
style="min-width: 7em"
|
||||
size="sm"
|
||||
>
|
||||
</b-select>
|
||||
</b-form-select>
|
||||
</b-form-group>
|
||||
</form>
|
||||
</b-modal>
|
||||
|
|
Loading…
Reference in New Issue
Block a user