@emberai-engg/task-board 0.3.2 → 0.3.3
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2161,7 +2161,7 @@ function TaskBoard({
|
|
|
2161
2161
|
onSetFilterTags: setFilterTags
|
|
2162
2162
|
}
|
|
2163
2163
|
),
|
|
2164
|
-
board.boardLoading ? /* @__PURE__ */ jsx15(BoardSkeleton, {}) : /* @__PURE__ */ jsx15("div", { className: "flex-1 min-h-0 eb-tb-board-scroll overflow-
|
|
2164
|
+
board.boardLoading ? /* @__PURE__ */ jsx15(BoardSkeleton, {}) : /* @__PURE__ */ jsx15("div", { className: "flex-1 min-h-0 eb-tb-board-scroll overflow-y-hidden pb-4", children: /* @__PURE__ */ jsx15(DragDropContext, { onDragEnd: handleDragEnd, children: /* @__PURE__ */ jsx15("div", { className: "flex gap-4 min-w-max h-full", children: columns.map((col) => {
|
|
2165
2165
|
const allColumnTasks = board.tasks[col.key] || [];
|
|
2166
2166
|
const columnTasks = filterTags.length > 0 ? allColumnTasks.filter((t) => {
|
|
2167
2167
|
const taskTags = t.tags || [];
|