Skip to content
Snippets Groups Projects
Verified Commit 6b718dc2 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix fetching of messages in frontend

parent 5c4c1daf
No related branches found
No related tags found
2 merge requests!1237Release 3.0,!1183Release 3.0
......@@ -283,7 +283,9 @@ export default {
},
$route: {
handler(newRoute) {
this.$apollo.queries.messages.refetch();
if (this.$apollo.queries.messages) {
this.$apollo.queries.messages.refetch();
}
},
immediate: true,
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment