From 408a1615956a9e745e4b541676a27c1fc9f9204f Mon Sep 17 00:00:00 2001 From: Eymen Elkum Date: Wed, 11 Sep 2024 15:23:53 +0300 Subject: [PATCH] fix row action return undefined (#3140) --- client/src/views/record/row-actions/relationship-remove-only.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/views/record/row-actions/relationship-remove-only.js b/client/src/views/record/row-actions/relationship-remove-only.js index bb9a9e869d..84d67072fb 100644 --- a/client/src/views/record/row-actions/relationship-remove-only.js +++ b/client/src/views/record/row-actions/relationship-remove-only.js @@ -43,6 +43,8 @@ class RelationshipRemoveOnlyActionsView extends RelationshipActionsView { }, ]; } + + return []; } }