@michengai/dsh-codex-ui 0.2.75 → 0.2.76
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/client.js +1 -1
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -1533,7 +1533,7 @@ header [data-dcu-title-folder] svg,header [data-dcu-title-more] svg{display:bloc
|
|
|
1533
1533
|
const workspaceId = String(workspace.workspaceId);
|
|
1534
1534
|
const zoneIds = zone === "pinned" ? pinnedGroupIds : regularGroupIds;
|
|
1535
1535
|
const dropsBefore = workspaceDropTarget?.zone === zone && workspaceDropTarget.beforeId === workspaceId;
|
|
1536
|
-
const dropsAfterLast = workspaceDropTarget?.zone === zone && workspaceDropTarget.beforeId === void 0 && zoneIds[zoneIds.length - 1] === workspaceId;
|
|
1536
|
+
const dropsAfterLast = zone === "projects" && workspaceDropTarget?.zone === zone && workspaceDropTarget.beforeId === void 0 && zoneIds[zoneIds.length - 1] === workspaceId;
|
|
1537
1537
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
1538
1538
|
className: `dcu-wb-project${isCurrentWorkspace ? " dcu-wb-project-current" : ""}${isPinnedHeaderDrop || dropsBefore ? " dcu-wb-drop" : ""}${dropsAfterLast ? " dcu-wb-drop dcu-wb-drop-after" : ""}`,
|
|
1539
1539
|
onDragOver: (event) => {
|