We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299713f commit 1990472Copy full SHA for 1990472
src/common/datetime/format_date.ts
@@ -77,7 +77,7 @@ export const formatDateNumeric = (
77
const month = parts.find((value) => value.type === "month")?.value;
78
const year = parts.find((value) => value.type === "year")?.value;
79
80
- const lastPart = parts.at(parts.length - 1);
+ const lastPart = parts[parts.length - 1];
81
let lastLiteral = lastPart?.type === "literal" ? lastPart?.value : "";
82
83
if (locale.language === "bg" && locale.date_format === DateFormat.YMD) {
0 commit comments