mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-22 11:05:17 +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() {
|
setup() {
|
||||||
const botStore = useBotStore();
|
const botStore = useBotStore();
|
||||||
|
|
||||||
onMounted(() => botStore.activeBot.getLogs());
|
onMounted(async () => {
|
||||||
|
botStore.activeBot.getLogs();
|
||||||
|
});
|
||||||
|
|
||||||
const formattedLogs = computed(() => {
|
const formattedLogs = computed(() => {
|
||||||
let result = '';
|
let result = '';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user