1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-24 08:42:24 +02:00

Adding more granularity to the statistic #654

This commit is contained in:
Patrik J. Braun 2023-04-13 18:33:01 +02:00
parent 5ff243310e
commit 27d1270da6

View File

@ -145,8 +145,10 @@ export class FilterService {
const Y2 = Y * 2;
const Y5 = Y * 5;
const Dec = Y * 10;
const Dec2 = Y * 20;
const Dec5 = Y * 50;
const Sen = Y * 100;
const divs = [H, D, M, Y, Y2, Y5, Dec, Sen];
const divs = [H, D, M, Y, Y2, Y5, Dec, Dec2, Dec5, Sen];
// finding the resolution
let usedDiv = H;