Skip to content

Commit

Permalink
use abbreviated format for duration
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiota committed Jul 14, 2021
1 parent 16dad65 commit cdd593a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const getRenderCellValue = ({
case ALERT_START:
return <TimestampTooltip time={new Date(value ?? '').getTime()} timeUnit="milliseconds" />;
case ALERT_DURATION:
return asDuration(Number(value), { extended: true });
return asDuration(Number(value));
case ALERT_SEVERITY_LEVEL:
return <SeverityBadge severityLevel={value ?? undefined} />;
case RULE_NAME:
Expand Down

0 comments on commit cdd593a

Please sign in to comment.