From a03162cfbeb6c7a37e5d0a3ebd9cc50cbb1e9248 Mon Sep 17 00:00:00 2001 From: Yurii Date: Mon, 18 May 2026 16:32:40 +0300 Subject: [PATCH] Fix --- client/src/views/record/panels/relationship.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/client/src/views/record/panels/relationship.js b/client/src/views/record/panels/relationship.js index e065d78fa2..67e0d4cb90 100644 --- a/client/src/views/record/panels/relationship.js +++ b/client/src/views/record/panels/relationship.js @@ -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(); - }); + }, }); }