Skip to content

Commit

Permalink
Update prop names
Browse files Browse the repository at this point in the history
  • Loading branch information
dkmyta committed Oct 28, 2024
1 parent 5ef82d8 commit 4daaabb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ export default function ThreatsDataViews( {
isThreatEligibleForFix?: ( threat: Threat ) => boolean;
isThreatEligibleForIgnore?: ( threat: Threat ) => boolean;
isThreatEligibleForUnignore?: ( threat: Threat ) => boolean;
onFixThreats?: ( threatsIds: ( string | number )[] ) => void;
onIgnoreThreats?: ( threatsIds: ( string | number )[] ) => void;
onUnignoreThreats?: ( threatsIds: ( string | number )[] ) => void;
onFixThreats?: ( threatIds: ( string | number )[] ) => void;
onIgnoreThreats?: ( threatIds: ( string | number )[] ) => void;
onUnignoreThreats?: ( threatIds: ( string | number )[] ) => void;
} ): JSX.Element {
const baseView = {
sort: {
Expand Down

0 comments on commit 4daaabb

Please sign in to comment.