From ae46b3df58b2116ef651b3a4dba83123a65f9496 Mon Sep 17 00:00:00 2001 From: zadam Date: Thu, 23 Jun 2022 22:17:47 +0200 Subject: [PATCH] fix typo in the custom widget location --- src/public/app/layouts/desktop_layout.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index 70656e413..8bf118092 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -194,7 +194,10 @@ export default class DesktopLayout { .child(new SqlResultWidget()) ) .child(new FindWidget()) - .child(...this.customWidgets.get('node-detail-pane')) + .child( + ...this.customWidgets.get('node-detail-pane'), // typo, let's keep it for a while as BC + ...this.customWidgets.get('note-detail-pane') + ) ) ) .child(...this.customWidgets.get('center-pane'))