From cb6a320eb5d036d49e8daf41740f4899fd666e97 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 11 Apr 2023 15:52:42 +0300 Subject: [PATCH] fix typo --- client/src/views/record/detail-bottom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/record/detail-bottom.js b/client/src/views/record/detail-bottom.js index 53caf0f681..b3af03097a 100644 --- a/client/src/views/record/detail-bottom.js +++ b/client/src/views/record/detail-bottom.js @@ -180,7 +180,7 @@ define('views/record/detail-bottom', ['views/record/panels-container'], function let p = this.layoutData[name]; - if (!~panelNameList.indexOf(name) && !p.disbled) { + if (!~panelNameList.indexOf(name) && !p.disabled) { this.addRelationshipPanel(name, p); } }