mirror of
https://github.com/ansible/awx.git
synced 2026-04-07 02:59:21 -02:30
removes extra spacing
This commit is contained in:
@@ -24,8 +24,8 @@ export function timeOfDay() {
|
|||||||
const second = prependZeros(date.getSeconds());
|
const second = prependZeros(date.getSeconds());
|
||||||
const time =
|
const time =
|
||||||
hour > 12
|
hour > 12
|
||||||
? `${hour - 12}:${minute} :${second} PM`
|
? `${hour - 12}:${minute}:${second} PM`
|
||||||
: `${hour}:${minute}:${second}`;
|
: `${hour}:${minute}:${second} AM`;
|
||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user