Merge branch 'topic-conditionals' of https://github.com/nasa/openmct into conditionals-refactor

This commit is contained in:
Joshi 2020-02-27 11:19:35 -08:00
commit b8dc5acf00
3 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ import Vue from 'vue';
export default class ConditionSetViewProvider {
constructor(openmct) {
this.openmct = openmct;
this.name = 'Conditions View';
this.key = 'conditionSet.view';
this.cssClass = 'icon-conditional'; // TODO: replace with class for new icon
}

View File

@ -68,6 +68,7 @@
<input v-model="domainObject.configuration.name"
class="t-condition-input__name"
type="text"
@blur="persist"
>
</span>
</li>

View File

@ -81,7 +81,6 @@
<script>
import Condition from '../../condition/components/Condition.vue';
import ConditionManager from '../../condition/ConditionManager';
import uuid from 'uuid';
export default {