Do some final cleanup on vue3

This commit is contained in:
Matthias 2022-12-04 17:07:10 +01:00
parent 48d63148ac
commit efac66e317
3 changed files with 1 additions and 12 deletions

View File

@ -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 (?)

View File

@ -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>

View File

@ -172,8 +172,6 @@ export default defineComponent({
DailyStats, DailyStats,
DraggableContainer, DraggableContainer,
FTBotAPIPairList, FTBotAPIPairList,
// GridItem,
// GridLayout,
PairLockList, PairLockList,
PairSummary, PairSummary,
Performance, Performance,