Skip to content

Commit

Permalink
fix errors (#4333)
Browse files Browse the repository at this point in the history
  • Loading branch information
frapuks committed Oct 14, 2024
1 parent 762aae8 commit d9a1a3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const CaseTaskOverview: FunctionComponent<CaseTaskOverviewProps> = ({
>
{t_i18n('Assignees')}
</Typography>
<ItemAssignees assignees={data.objectAssignee ?? []} />
<ItemAssignees assignees={data.objectAssignee ?? []} stixDomainObjectId={data.id}/>
<Typography
variant="h3"
gutterBottom={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ interface ObjectAssigneeFieldProps {
name: string;
onChange?: (name: string, values: OptionAssignee[]) => void;
style?: Record<string, string | number>;
helpertext?: string;
helpertext?: unknown;
label?: string,
disabled?: boolean,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ interface ObjectParticipantFieldProps {
name: string;
onChange?: (name: string, values: OptionParticipant[]) => void;
style?: Record<string, string | number>;
helpertext?: string;
helpertext?: unknown;
label?: string,
disabled?: boolean,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const useStyles = makeStyles((theme) => ({
const StixDomainObjectOverview = ({
stixDomainObject,
withoutMarking,
withPattern,
withPattern = false,
displayAssignees,
displayParticipants,
displayConfidence = true,
Expand Down

0 comments on commit d9a1a3b

Please sign in to comment.