diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-06-26 16:09:18 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-06-26 16:09:18 -0500 |
| commit | 49a33e6e3a96ae723653cdb6925b88c1474d4775 (patch) | |
| tree | c85a21fc725f75ed7ea1987c767b7d4e1fe70a36 /src | |
| parent | d1d67eaec257ae5cba6caea55552c6e09ee8062c (diff) | |
Event dump spacing fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/models/EventInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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)}`; } } |
