mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 15:14:49 -06:00
fix: rabbitmq getData
This commit is contained in:
parent
b1dd5b65c9
commit
07c1f7255a
@ -199,8 +199,8 @@ export default {
|
||||
this.instance.instance.instanceName
|
||||
);
|
||||
|
||||
this.chatwootData = Object.assign({}, chatwootData);
|
||||
this.defaultChatwootData = Object.assign({}, chatwootData);
|
||||
this.chatwootData = Object.assign({}, chatwootData || {});
|
||||
this.defaultChatwootData = Object.assign({}, chatwootData || {});
|
||||
} catch (e) {
|
||||
this.error = e.message?.message || e.message || e;
|
||||
} finally {
|
||||
|
@ -145,8 +145,10 @@ export default {
|
||||
},
|
||||
},
|
||||
|
||||
mounted() {
|
||||
this.loadRabbitmq();
|
||||
watch: {
|
||||
expanded(val) {
|
||||
if (val) this.loadRabbitmq();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user