diff --git a/src/public/app/utils/formatters.js b/src/public/app/utils/formatters.js index 2c996bb80..638404c89 100644 --- a/src/public/app/utils/formatters.js +++ b/src/public/app/utils/formatters.js @@ -12,9 +12,11 @@ export function formatDateTime(date, dateStyle = "medium", timeStyle = "medium") // Parse the given string as a date parsedDate = new Date(date); } else if (typeof date === "number" || date instanceof Date) { + // The given date is already a Date instance or a number parsedDate = date; } else { - throw new TypeError(); + // Invalid type + throw new TypeError(`Invalid type for the "date" argument.`); }; if (timeStyle === "none") {