Skip to content

Commit

Permalink
Advanced coverage desk select (#2054)
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc authored Aug 7, 2024
1 parent 2f2f27f commit 52427fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/components/Coverages/CoverageAddAdvancedModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface ICoverageSelector {
qcode: IG2ContentType['qcode'];
name: IG2ContentType['name'];
icon: string;
desk: IDesk['_id'];
desk: IDesk;
user: IUser;
status: IPlanningNewsCoverageStatus;
popupContainer: any;
Expand Down Expand Up @@ -288,6 +288,7 @@ export class CoverageAddAdvancedModal extends React.Component<IProps, IState> {
}
>
<SelectUser
deskId={coverage.desk?._id ?? undefined}
selectedUserId = {coverage.user?._id}
onSelect={(user) => {
this.onUserChange(coverage, user);
Expand Down

0 comments on commit 52427fa

Please sign in to comment.