@tutti-os/workbench-surface 0.0.131 → 0.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +8 -6
package/dist/index.js
CHANGED
|
@@ -11189,9 +11189,6 @@ function WorkbenchHostDock({
|
|
|
11189
11189
|
},
|
|
11190
11190
|
[nodeDefinitions, provideMinimizedNodePreview]
|
|
11191
11191
|
);
|
|
11192
|
-
if (dockItems.length === 0 && presentDockItems.length === 0) {
|
|
11193
|
-
return null;
|
|
11194
|
-
}
|
|
11195
11192
|
const closePopup = () => {
|
|
11196
11193
|
clearHoverPanelCloseTimer();
|
|
11197
11194
|
clearHoverPanelOpenTimer();
|
|
@@ -11275,6 +11272,9 @@ function WorkbenchHostDock({
|
|
|
11275
11272
|
},
|
|
11276
11273
|
[host, onDockEntryAction, pendingActionKeys]
|
|
11277
11274
|
);
|
|
11275
|
+
if (dockItems.length === 0 && presentDockItems.length === 0) {
|
|
11276
|
+
return null;
|
|
11277
|
+
}
|
|
11278
11278
|
const popupEntry = activePopup === null ? null : resolvedEntries.find(
|
|
11279
11279
|
(entry) => entry.entry.id === activePopup.entryId
|
|
11280
11280
|
) ?? null;
|