adding a button to the detail to explicitly save changes.

This commit is contained in:
zadam
2020-07-23 00:19:50 +02:00
parent 2c9565b4b3
commit aa4a645670
4 changed files with 21 additions and 4 deletions

View File

@@ -184,6 +184,10 @@ export default class AttributeListWidget extends TabAwareWidget {
}
}
async saveAttributesCommand() {
await this.attributeEditorWidget.save();
}
updateAttributeListCommand({attributes}) {
this.attributeEditorWidget.updateAttributeList(attributes);
}