mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
implimented clone criterion
This commit is contained in:
parent
386fc75047
commit
22161fce7f
@ -103,7 +103,7 @@
|
|||||||
/>
|
/>
|
||||||
<div class="temp">
|
<div class="temp">
|
||||||
<span class="is-enabled c-c__duplicate"
|
<span class="is-enabled c-c__duplicate"
|
||||||
@click="cloneCriterion"
|
@click="cloneCriterion(index)"
|
||||||
></span>
|
></span>
|
||||||
<span v-if="!(domainObject.configuration.criteria.length === 1)"
|
<span v-if="!(domainObject.configuration.criteria.length === 1)"
|
||||||
class="is-enabled c-c__trash"
|
class="is-enabled c-c__trash"
|
||||||
@ -258,8 +258,10 @@ export default {
|
|||||||
this.domainObject.configuration.criteria.splice(index, 1);
|
this.domainObject.configuration.criteria.splice(index, 1);
|
||||||
this.persist()
|
this.persist()
|
||||||
},
|
},
|
||||||
cloneCriterion(ev) {
|
cloneCriterion(index) {
|
||||||
// console.log('cloneCriterion')
|
const clonedCriterion = {...this.domainObject.configuration.criteria[index]};
|
||||||
|
this.domainObject.configuration.criteria.splice(index + 1, 0, clonedCriterion);
|
||||||
|
this.persist()
|
||||||
},
|
},
|
||||||
|
|
||||||
setOutput() {
|
setOutput() {
|
||||||
|
Loading…
Reference in New Issue
Block a user