missing semicolon

This commit is contained in:
Maxim Devaev 2022-04-26 01:48:33 +03:00
parent a3ce204100
commit 40fb912a17

View File

@ -191,7 +191,7 @@ export function Session() {
pairs.push([ pairs.push([
tools.upperFirst(field).replace("_", " "), tools.upperFirst(field).replace("_", " "),
(flags["now"] ? __colored("red", "RIGHT NOW") : __colored("green", "No")) (flags["now"] ? __colored("red", "RIGHT NOW") : __colored("green", "No"))
+ " " + + "; " +
(flags["past"] ? __colored("red", "In the past") : __colored("green", "Never")), (flags["past"] ? __colored("red", "In the past") : __colored("green", "Never")),
]); ]);
} }