mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 03:25:15 +00:00
Do some final cleanup on vue3
This commit is contained in:
parent
48d63148ac
commit
efac66e317
|
@ -107,8 +107,7 @@ export default defineComponent({
|
||||||
title: 'Stop Bot',
|
title: 'Stop Bot',
|
||||||
message: 'Stop the bot loop from running?',
|
message: 'Stop the bot loop from running?',
|
||||||
accept: () => {
|
accept: () => {
|
||||||
console.log('stopped...');
|
botStore.activeBot.stopBot();
|
||||||
// botStore.activeBot.stopBot();
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
msgBox.value?.show(msg);
|
msgBox.value?.show(msg);
|
||||||
|
@ -119,7 +118,6 @@ export default defineComponent({
|
||||||
title: 'Stop Buying',
|
title: 'Stop Buying',
|
||||||
message: 'Freqtrade will continue to handle open trades.',
|
message: 'Freqtrade will continue to handle open trades.',
|
||||||
accept: () => {
|
accept: () => {
|
||||||
console.log('stopBuy...');
|
|
||||||
botStore.activeBot.stopBuy();
|
botStore.activeBot.stopBuy();
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -143,7 +141,6 @@ export default defineComponent({
|
||||||
title: 'ForceExit all',
|
title: 'ForceExit all',
|
||||||
message: 'Really forceexit ALL trades?',
|
message: 'Really forceexit ALL trades?',
|
||||||
accept: () => {
|
accept: () => {
|
||||||
console.log('forceexit all...');
|
|
||||||
const payload: ForceSellPayload = {
|
const payload: ForceSellPayload = {
|
||||||
tradeid: 'all',
|
tradeid: 'all',
|
||||||
// TODO: support ordertype (?)
|
// TODO: support ordertype (?)
|
||||||
|
|
|
@ -262,10 +262,4 @@ export default defineComponent({
|
||||||
.nav-link:active {
|
.nav-link:active {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
// .verticalCenter {
|
|
||||||
// align-items: center;
|
|
||||||
// display: inline-flex;
|
|
||||||
// height: 100%;
|
|
||||||
// }
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -172,8 +172,6 @@ export default defineComponent({
|
||||||
DailyStats,
|
DailyStats,
|
||||||
DraggableContainer,
|
DraggableContainer,
|
||||||
FTBotAPIPairList,
|
FTBotAPIPairList,
|
||||||
// GridItem,
|
|
||||||
// GridLayout,
|
|
||||||
PairLockList,
|
PairLockList,
|
||||||
PairSummary,
|
PairSummary,
|
||||||
Performance,
|
Performance,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user