mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-21 10:51:50 +03:00
fix: fix filter and sort position on board horizontal scroll (#1386)
Closes #1354
This commit is contained in:
parent
240edda25c
commit
5653b89114
@ -30,8 +30,10 @@ import { BoardOptions } from '../types/BoardOptions';
|
|||||||
|
|
||||||
import { EntityBoardColumn } from './EntityBoardColumn';
|
import { EntityBoardColumn } from './EntityBoardColumn';
|
||||||
|
|
||||||
const StyledCustomScrollWrapper = styled(ScrollWrapper)`
|
const StyledWrapper = styled.div`
|
||||||
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export function EntityBoard({
|
export function EntityBoard({
|
||||||
@ -105,7 +107,7 @@ export function EntityBoard({
|
|||||||
const boardRef = useRef<HTMLDivElement>(null);
|
const boardRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
return (boardColumns?.length ?? 0) > 0 ? (
|
return (boardColumns?.length ?? 0) > 0 ? (
|
||||||
<StyledCustomScrollWrapper>
|
<StyledWrapper>
|
||||||
<BoardHeader
|
<BoardHeader
|
||||||
viewName="All opportunities"
|
viewName="All opportunities"
|
||||||
viewIcon={<IconList size={theme.icon.size.md} />}
|
viewIcon={<IconList size={theme.icon.size.md} />}
|
||||||
@ -113,6 +115,7 @@ export function EntityBoard({
|
|||||||
onSortsUpdate={updateSorts}
|
onSortsUpdate={updateSorts}
|
||||||
context={CompanyBoardRecoilScopeContext}
|
context={CompanyBoardRecoilScopeContext}
|
||||||
/>
|
/>
|
||||||
|
<ScrollWrapper>
|
||||||
<StyledBoard ref={boardRef}>
|
<StyledBoard ref={boardRef}>
|
||||||
<DragDropContext onDragEnd={onDragEnd}>
|
<DragDropContext onDragEnd={onDragEnd}>
|
||||||
{sortedBoardColumns.map((column) => (
|
{sortedBoardColumns.map((column) => (
|
||||||
@ -131,11 +134,12 @@ export function EntityBoard({
|
|||||||
))}
|
))}
|
||||||
</DragDropContext>
|
</DragDropContext>
|
||||||
</StyledBoard>
|
</StyledBoard>
|
||||||
|
</ScrollWrapper>
|
||||||
<DragSelect
|
<DragSelect
|
||||||
dragSelectable={boardRef}
|
dragSelectable={boardRef}
|
||||||
onDragSelectionChange={setCardSelected}
|
onDragSelectionChange={setCardSelected}
|
||||||
/>
|
/>
|
||||||
</StyledCustomScrollWrapper>
|
</StyledWrapper>
|
||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user