mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
Don't bubble error through mounted hook
This commit is contained in:
parent
7f0779fd3d
commit
bf21299340
|
@ -14,7 +14,9 @@ export default defineComponent({
|
|||
setup() {
|
||||
const botStore = useBotStore();
|
||||
|
||||
onMounted(() => botStore.activeBot.getLogs());
|
||||
onMounted(async () => {
|
||||
botStore.activeBot.getLogs();
|
||||
});
|
||||
|
||||
const formattedLogs = computed(() => {
|
||||
let result = '';
|
||||
|
|
Loading…
Reference in New Issue
Block a user