Skip to content

Commit

Permalink
Fix Lint Error
Browse files Browse the repository at this point in the history
Ran npm run prettier-fix

Signed-off-by: Aravind Parappil <[email protected]>
  • Loading branch information
aravindparappil46 committed Mar 26, 2024
1 parent 13616ac commit 0162957
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/views/portfolio/vulnerabilities/Vulnerability.vue
Original file line number Diff line number Diff line change
Expand Up @@ -330,16 +330,10 @@ export default {
);
},
epssScore() {
return common.valueWithDefault(
this.vulnerability.epssScore,
0,
);
return common.valueWithDefault(this.vulnerability.epssScore, 0);
},
epssPercentile() {
return common.valueWithDefault(
this.vulnerability.epssPercentile,
0,
);
return common.valueWithDefault(this.vulnerability.epssPercentile, 0);
},
owaspRRLikelihoodScore() {
return common.valueWithDefault(
Expand Down

0 comments on commit 0162957

Please sign in to comment.