|
|
|
@ -68,7 +68,7 @@ export class ListItem extends BI.BasicButton {
|
|
|
|
|
action: () => { |
|
|
|
|
const newName = this.nameEditor.getValue(); |
|
|
|
|
this.store.changeName(name, newName).then(() => { |
|
|
|
|
this.store.setIsEdit(false); |
|
|
|
|
this.store.setIsEdit(false, name); |
|
|
|
|
this.nameLabel.setText(newName); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -227,7 +227,7 @@ export class ListItem extends BI.BasicButton {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
changeName: () => { |
|
|
|
|
this.store.setIsEdit(true); |
|
|
|
|
this.store.setIsEdit(true, name); |
|
|
|
|
}, |
|
|
|
|
copy: () => { |
|
|
|
|
this.store.setConnectionSelected(name); |
|
|
|
|