Update index.vue

This commit is contained in:
Muhsin Keloth
2024-05-14 12:27:52 +05:30
parent 27ec845faa
commit 87e8e342c9
@@ -76,6 +76,13 @@ export default {
return !this.isFetching && this.linkedIssue;
},
},
watch: {
conversationId(newConversationId, prevConversationId) {
if (newConversationId && newConversationId !== prevConversationId) {
this.loadLinkedIssue();
}
},
},
mounted() {
this.loadLinkedIssue();
},