- Clear stage before moving to a sub-sub branch.

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-06-07 15:04:36 -04:00
parent d846894d22
commit 6cf4a50a83
3 changed files with 15902 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import { groupBy } from "lodash";
import fakeData from "./testData/board600.json";
import fakeData from "./testData/board300.json";
const sortByParentId = (arr) => {
// return arr.reduce((accumulator, currentValue) => {

File diff suppressed because it is too large Load Diff

View File

@@ -83,9 +83,27 @@ export const StyleVertical = styled.div`
min-height: 50px; // Not needed, just for extra landing space
}
.smooth-dnd-container.horizontal {
white-space: normal;
// TODO: This is what is currently providing us multi row cols, and may need to be adjusted with new DND Library
display: flex; /* Allows wrapping */
flex-wrap: wrap; /* Allows wrapping */
//background-color: yellow !important;
}
.smooth-dnd-ghost {
//background-color: red !important;
}
.react-trello-card {
//background-color: orange !important;
margin: 5px;
// TODO: This is what is currently providing us multi row cols, and may need to be adjusted with new DND Library
flex: 0 1 auto;
}
.smooth-dnd-stretcher-element {
//background-color: purple !important;
}
.smooth-dnd-draggable-wrapper {
//background-color: blue !important;
flex: 0 1 auto; /* Allows items to grow and shrink */
}
.react-trello-board {
overflow-y: hidden !important;
}