From ef7639c05899e43542d5ce88d53f3cc8e08b0162 Mon Sep 17 00:00:00 2001 From: Shefali Date: Thu, 28 Sep 2023 11:15:08 -0700 Subject: [PATCH] Listen to ALL changes for a plan since couchdb feed updates does not trigger a property only event. It triggers a catchall '*' event. --- src/plugins/plan/components/Plan.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/plan/components/Plan.vue b/src/plugins/plan/components/Plan.vue index 23f865aedf7..b6a54957e32 100644 --- a/src/plugins/plan/components/Plan.vue +++ b/src/plugins/plan/components/Plan.vue @@ -151,7 +151,7 @@ export default { this.planViewConfiguration.on('change', this.handleConfigurationChange); this.stopObservingSelectFile = this.openmct.objects.observe( this.domainObject, - 'selectFile', + '*', this.handleSelectFileChange ); this.loadComposition();