diff --git a/src/pages/policies-and-audits/smart-bulletins/index.astro b/src/pages/policies-and-audits/smart-bulletins/index.astro index 406b3698..91946fe2 100644 --- a/src/pages/policies-and-audits/smart-bulletins/index.astro +++ b/src/pages/policies-and-audits/smart-bulletins/index.astro @@ -11,7 +11,7 @@ import FullSizeTemplate from '@components/FullSizeTemplate.astro' const smartbulletinsData = await getEntry('smartbulletins-old', 'smart-bulletins'); const smartbulletins = await getCollection('smart-bulletins') -smartbulletins.sort((a, b) => parseInt(a.data.order) - parseInt(b.data.order)) +smartbulletins.sort(a => 0 - parseInt(a.data.order)) export async function getStaticPaths() { const entries = await getCollection('about'); @@ -48,7 +48,7 @@ export async function getStaticPaths() {