mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
better config/results scroll
This commit is contained in:
parent
e136127e4c
commit
93be009b74
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="d-flex px-3 gap-3 flex-column flex-lg-row">
|
||||
<div class="d-flex px-3 mb-3 gap-3 flex-column flex-lg-row">
|
||||
<b-list-group ref="availablePairlistsEl" class="available-pairlists">
|
||||
<b-list-group-item
|
||||
v-for="pairlist in availablePairlists"
|
||||
|
@ -66,19 +66,26 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 col-lg-3">
|
||||
<div class="d-flex flex-column col-12 col-lg-3">
|
||||
<b-form-radio-group v-model="selectedView" class="mb-2" size="sm" buttons>
|
||||
<b-form-radio button value="Config"> Config</b-form-radio>
|
||||
<b-form-radio button value="Results" :disabled="pairlistStore.whitelist.length === 0">
|
||||
Results</b-form-radio
|
||||
>
|
||||
</b-form-radio-group>
|
||||
<div class="position-relative flex-fill overflow-auto">
|
||||
<CopyableTextfield
|
||||
v-if="selectedView === 'Config'"
|
||||
class="position-absolute w-100"
|
||||
:content="pairlistStore.configJSON"
|
||||
:is-valid="pairlistStore.pairlistValid"
|
||||
/>
|
||||
<CopyableTextfield v-if="selectedView === 'Results'" :content="pairlistStore.whitelist" />
|
||||
<CopyableTextfield
|
||||
v-if="selectedView === 'Results'"
|
||||
class="position-absolute w-100"
|
||||
:content="pairlistStore.whitelist"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
class="copy-button position-absolute end-0 mt-1 me-2"
|
||||
@click="copy(content)"
|
||||
/>
|
||||
<pre class="text-start border p-1"><code>{{ content }}</code></pre>
|
||||
<pre class="text-start border p-1 mb-0"><code>{{ content }}</code></pre>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user