We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9c5985 commit 92a564dCopy full SHA for 92a564d
src/wirecloud/platform/static/js/wirecloud/ui/WorkspaceView.js
@@ -43,6 +43,12 @@
43
this.walletButton.enabled = editing && this.model.isAllowed('edit');
44
this.wiringButton.enabled = editing && this.model.isAllowed('edit');
45
this.notebook.tabWrapper.toggleClassName("hidden", !(editing || this.tabs.length > 1));
46
+ this.notebook.tabs.forEach((tab) => {
47
+ if (tab.dragboard) {
48
+ tab.dragboard._notifyWindowResizeEvent();
49
+ }
50
+ });
51
+
52
if (this.addTabButton) {
53
this.addTabButton.toggleClassName("hidden", !editing);
54
}
0 commit comments