This commit is contained in:
Yurii
2026-05-18 16:32:40 +03:00
parent 9d331f9199
commit a03162cfbe

View File

@@ -769,14 +769,15 @@ class RelationshipPanelView extends BottomPanelView {
entityType: scope,
id: id,
model: model,
})
.then(view => {
// @todo Move to afterSave?
this.listenTo(view, 'after:save', () => {
afterSave: model => {
if (!model) {
return;
}
this.collection.fetch();
this.processSyncBack();
});
},
});
}