From 49a33e6e3a96ae723653cdb6925b88c1474d4775 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 26 Jun 2022 16:09:18 -0500 Subject: Event dump spacing fix --- src/models/EventInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/models/EventInfo.ts') diff --git a/src/models/EventInfo.ts b/src/models/EventInfo.ts index 693c8bb..d42cd94 100644 --- a/src/models/EventInfo.ts +++ b/src/models/EventInfo.ts @@ -54,7 +54,7 @@ export default class EventInfo { } else if (this.start === -1 || this.end === -1) { return `${this.days}`; } else { - return `${this.days} ${EventInfo.timeToStr(this.start)}-${EventInfo.timeToStr(this.end)}`; + return `${this.days} ${EventInfo.timeToStr(this.start)} - ${EventInfo.timeToStr(this.end)}`; } } -- cgit v1.2.3