Merge pull request #2677 from nasa/condition-clone-name

Condition clone name persistance
This commit is contained in:
Shefali Joshi 2020-02-26 11:32:48 -08:00 committed by GitHub
commit 96e433beaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

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

@ -250,7 +250,6 @@ export default {
let conditionObj = {
isDefault: isDefault,
type: 'condition',
name: isDefault ? 'Default' : (isClone ? 'Copy of ' : '') + 'Unnamed Condition',
identifier: {
namespace: this.domainObject.identifier.namespace,
key: uuid()