Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
Signed-off-by: Amndeep Singh Mann <[email protected]>
  • Loading branch information
Amndeep7 committed Jul 30, 2024
1 parent 6f2fa7f commit 46c8cd4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions apps/frontend/src/components/cards/EvaluationInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,13 @@ export default class EvaluationInfo extends Vue {
}
get duration(): string | undefined {
const duration = _.get(this.file_object, 'evaluation.data.statistics.duration');
return duration === null || duration == undefined ? undefined : duration.toString();
const duration = _.get(
this.file_object,
'evaluation.data.statistics.duration'
);
return duration === null || duration === undefined
? undefined
: duration.toString();
}
get evaluation(): IEvaluation | undefined {
Expand Down

0 comments on commit 46c8cd4

Please sign in to comment.