1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Removed grouping

This commit is contained in:
Hadi Charara 2022-07-03 18:59:10 -04:00
parent b0b382ca78
commit 2354676c58

View file

@ -167,7 +167,7 @@ import datetime from '../../scripts/datetime';
lines.push(escapeHtml(identifyResult.Name));
if (identifyResult.ProductionYear) {
lines.push(datetime.toLocaleString(identifyResult.ProductionYear));
lines.push(datetime.toLocaleString(identifyResult.ProductionYear, {useGrouping: false}));
}
let resultHtml = lines.join('<br/>');