diff options
| -rw-r--r-- | resources/pug/finals/publications.pug | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/resources/pug/finals/publications.pug b/resources/pug/finals/publications.pug index 374b036..bf5141f 100644 --- a/resources/pug/finals/publications.pug +++ b/resources/pug/finals/publications.pug @@ -163,7 +163,7 @@ block content radius: 10, symbol: 'circle', }, - data, + data: data.map(entry => [Date.parse(entry[0]), entry[1]]), }; } @@ -195,27 +195,27 @@ block content }, series: [ makeSeries('DGfS (conference)', '#506ba0', [ - [Date.parse('2025-09-04'), 4], - [Date.parse('2025-09-04'), 7], + ['2025-09-04', 4], + ['2025-09-04', 7], ]), makeSeries('Glossa', '#905486', [ - [Date.parse('2023-03-23'), 8], - [Date.parse('2024-02-04'), 8], - [Date.parse('2024-02-17'), 5], - [Date.parse('2024-07-10'), 2], + ['2023-03-23', 8], + ['2024-02-04', 8], + ['2024-02-17', 5], + ['2024-07-10', 2], ]), makeSeries('Lingua', '#fb6032', [ - [Date.parse('2023-02-22'), -1], + ['2023-02-22', -1], ]), makeSeries('Open Mind', '#00aeef', [ - [Date.parse('2023-07-28'), 34], - [Date.parse('2023-12-11'), 9], + ['2023-07-28', 34], + ['2023-12-11', 9], ]), makeSeries('Religions', '#00699e', [ - [Date.parse('2025-08-29'), 3], + ['2025-08-29', 3], ]), makeSeries('The New Scholar', '#dbbe9e', [ - [Date.parse('2023-05-05'), 1], + ['2023-05-05', 1], ]), ], }); |
