diff options
| author | Joe Carstairs <65492573+joeacarstairs@users.noreply.github.com> | 2025-01-06 21:49:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-06 21:49:17 +0000 |
| commit | 9fb9e47e92049b72cdc7cbaa3e9d43ed1aacd095 (patch) | |
| tree | a2069f3d255f8dddc0102afbc8283d79101045b7 /src/lib | |
| parent | f4875fd98fd502c19ca093e4bfeed386d174ed86 (diff) | |
| parent | 7d377d5794e92d0d06d3db19d398bb6f81802b5f (diff) | |
Merge pull request #109 from joeacarstairs/staging
Update
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/newsUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/newsUtils.ts b/src/lib/newsUtils.ts index bffc7d6..233fdcf 100644 --- a/src/lib/newsUtils.ts +++ b/src/lib/newsUtils.ts @@ -25,7 +25,7 @@ export function getHref(newsItem: CollectionEntry<'news'>) { export function getSlug(newsItem: CollectionEntry<'news'>) { const toLowerCase = (s: string) => s.toLowerCase(); const matchLocales = new RegExp(`(${locales.map(toLowerCase).join('|')})/`); - return newsItem.slug.replace(matchLocales, ''); + return newsItem.id.replace(matchLocales, ''); } export function isNewsItemInLocale(newsItem: CollectionEntry<'news'>, locale: Locale) { |
