We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd1bb3 commit ad7cf66Copy full SHA for ad7cf66
scripts/updateData.js
@@ -37,7 +37,7 @@ Handlebars.registerHelper("short", function (...args) {
37
38
let s = options.fn(this)?.trim();
39
40
- if (s.length > max) {
+ if (s.length > max + 1) {
41
s = s.slice(0, max) + '...';
42
}
43
@@ -352,7 +352,9 @@ const renderMarkdownSponsors = async (sponsors) => {
352
}, './templates/sponsors.hbs');
353
354
355
- const filterSponsors = (fn) => Object.values(sponsors).filter(fn);
+ const filterSponsors = (fn) => Object.values(sponsors)
356
+ .filter(fn)
357
+ .sort((a, b) => new Date(a.createdAt) - new Date(b.createdAt));
358
359
const rendered = [];
360
0 commit comments