Skip to content

Commit

Permalink
fix select all
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfauquette committed Jul 23, 2023
1 parent f339a4d commit 441c3f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/logos/LogoAnnotation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ export default function LogoAnnotation() {
...prevState,
logos: prevState.logos.map((logo, index) => {
if (logo.annotation_value === null) {
logo.selected = true;
logo.selected =
logo.annotation_type === null && logo.annotation_value === null;
}
return logo;
}),
Expand Down

0 comments on commit 441c3f9

Please sign in to comment.