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',
message: 'Stop the bot loop from running?',
accept: () => {
console.log('stopped...');
// botStore.activeBot.stopBot();
botStore.activeBot.stopBot();
},
};
msgBox.value?.show(msg);
@ -119,7 +118,6 @@ export default defineComponent({
title: 'Stop Buying',
message: 'Freqtrade will continue to handle open trades.',
accept: () => {
console.log('stopBuy...');
botStore.activeBot.stopBuy();
},
};
@ -143,7 +141,6 @@ export default defineComponent({
title: 'ForceExit all',
message: 'Really forceexit ALL trades?',
accept: () => {
console.log('forceexit all...');
const payload: ForceSellPayload = {
tradeid: 'all',
// TODO: support ordertype (?)

View File

@ -262,10 +262,4 @@ export default defineComponent({
.nav-link:active {
color: white !important;
}
// .verticalCenter {
// align-items: center;
// display: inline-flex;
// height: 100%;
// }
</style>

View File

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