Skip to content

Commit

Permalink
modifying moderate to medium
Browse files Browse the repository at this point in the history
  • Loading branch information
iamayushm committed Sep 18, 2024
1 parent b56128f commit 6dbecc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/mustacheHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export class MustacheHelper {
return {
critical: imageScanExecutionInfo.severityCount.critical,
high: imageScanExecutionInfo.severityCount.high,
moderate: imageScanExecutionInfo.severityCount.moderate,
medium: imageScanExecutionInfo.severityCount.medium,
low: imageScanExecutionInfo.severityCount.low,
}
} else{
Expand Down
4 changes: 2 additions & 2 deletions src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export interface vulnerability {
export interface severityCount {
critical: number;
high: number;
moderate: number;
medium: number;
low: number;
}
}
export interface WebhookParsedEvent {
eventType?: string;
devtronAppId?: number;
Expand Down

0 comments on commit 6dbecc8

Please sign in to comment.