fix typo in the custom widget location

This commit is contained in:
zadam 2022-06-23 22:17:47 +02:00
parent e51276f532
commit ae46b3df58

View File

@ -194,7 +194,10 @@ export default class DesktopLayout {
.child(new SqlResultWidget()) .child(new SqlResultWidget())
) )
.child(new FindWidget()) .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')) .child(...this.customWidgets.get('center-pane'))