Force Vue to look for the reactive property and recompute views (#3733)

Co-authored-by: Deep Tailor <deep.j.tailor@nasa.gov>
This commit is contained in:
Shefali Joshi 2021-03-03 15:42:55 -08:00 committed by GitHub
parent 905e397d3f
commit 94d9852339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,7 +159,7 @@ export default {
return this.views.filter(v => v.key === this.viewKey)[0] || {};
},
views() {
if (this.openmct.router.started !== true) {
if (this.domainObject && (this.openmct.router.started !== true)) {
return [];
}