mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Add transition for backtesting-sidebsar
This commit is contained in:
parent
1616c10602
commit
47a333a840
|
@ -62,13 +62,14 @@
|
||||||
@click="showLeftBar = !showLeftBar"
|
@click="showLeftBar = !showLeftBar"
|
||||||
>{{ showLeftBar ? '<' : '>' }}</b-button
|
>{{ showLeftBar ? '<' : '>' }}</b-button
|
||||||
>
|
>
|
||||||
|
<transition name="fade" mode="in-out">
|
||||||
<BacktestResultSelect
|
<BacktestResultSelect
|
||||||
v-if="btFormMode !== 'visualize' && showLeftBar"
|
v-if="btFormMode !== 'visualize' && showLeftBar"
|
||||||
:backtest-history="backtestHistory"
|
:backtest-history="backtestHistory"
|
||||||
:selected-backtest-result-key="selectedBacktestResultKey"
|
:selected-backtest-result-key="selectedBacktestResultKey"
|
||||||
class=""
|
|
||||||
@selectionChange="setBacktestResult"
|
@selectionChange="setBacktestResult"
|
||||||
/>
|
/>
|
||||||
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
<!-- End Left bar -->
|
<!-- End Left bar -->
|
||||||
|
|
||||||
|
@ -461,4 +462,14 @@ export default class Backtesting extends Vue {
|
||||||
flex: unset;
|
flex: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fade-enter-active,
|
||||||
|
.fade-leave-active {
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-enter,
|
||||||
|
.fade-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user