Fix navigation back to MyCustoms tab

This commit is contained in:
Julie Lenaerts 2023-11-21 11:53:16 +01:00
parent 693bf65721
commit dadde29bc2

View File

@ -128,8 +128,11 @@ export default {
},
methods: {
selectTab(tab) {
this.$store.dispatch('getByTab', { tab: tab });
if (tab !== 'MyCustoms') {
this.$store.dispatch('getByTab', { tab: tab });
}
this.activeTab = tab;
console.log(this.activeTab)
}
},
mounted() {