Skip to content

Commit

Permalink
🚑 fix: don't try to work out assignees for collaborators selecting im…
Browse files Browse the repository at this point in the history
…ages
  • Loading branch information
ChasNelson1990 committed Sep 14, 2022
1 parent e415d6f commit d21a6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ class UserInterface extends Component<Props, State> {
this.isOwnerOrMember();

const selectedImageAnnotators =
this.state.selectedImagesUid.size === 1
this.state.selectedImagesUid.size === 1 && this.props.profiles !== null
? this.props.profiles
.filter((profile) =>
this.state.metadata
Expand Down

0 comments on commit d21a6e7

Please sign in to comment.