+
+ [editable condition data]
+ [read-only condition data]
+
+
+
+
diff --git a/src/plugins/conditionSet/ConditionSetViewProvider.js b/src/plugins/conditionSet/ConditionSetViewProvider.js
index 720e377c91..bef7d6c123 100644
--- a/src/plugins/conditionSet/ConditionSetViewProvider.js
+++ b/src/plugins/conditionSet/ConditionSetViewProvider.js
@@ -23,47 +23,51 @@
import ConditionSet from './components/ConditionSet.vue';
import Vue from 'vue';
-export default function ConditionSetViewProvider(openmct) {
- return {
- key: 'conditionSet.view',
- name: 'Condition Set',
- cssClass: 'icon-summary-widget',
- canView: function (domainObject) {
- return domainObject.type === 'conditionSet';
- },
- canEdit: function (domainObject) {
- return domainObject.type === 'conditionSet';
- },
- view: function (domainObject, objectPath) {
- let component;
- return {
- show(container) {
- component = new Vue({
- el: container,
- components: {
- ConditionSet
- },
- provide: {
- openmct,
- domainObject,
- objectPath
- },
- data() {
- return {
- domainObject
- };
- },
- template: '