Skip to content

Commit

Permalink
[frontend] fix checkbox (#4230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwendoline-FAVRE-FELIX committed Sep 6, 2024
1 parent 5ba844d commit 0263a50
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ interface AttackPatternsMatrixLinesProps {
) => void;
selectAll: boolean;
onLabelClick: HandleAddFilter;
redirectionMode?: string;
}

export const attackPatternsMatrixLinesQuery = graphql`
Expand Down Expand Up @@ -85,6 +86,7 @@ const attackPatternsMatrixLinesFragment = graphql`

const AttackPatternsMatrixLines: FunctionComponent<AttackPatternsMatrixLinesProps> = ({
queryRef,
setNumberOfElements,
dataColumns,
onToggleEntity,
selectedElements,
Expand All @@ -101,6 +103,7 @@ const AttackPatternsMatrixLines: FunctionComponent<AttackPatternsMatrixLinesProp
linesFragment: attackPatternsMatrixLinesFragment,
queryRef,
nodePath: ['attackPatterns', 'pageInfo', 'globalCount'],
setNumberOfElements,
});

return (
Expand Down

0 comments on commit 0263a50

Please sign in to comment.