Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/pages/working-groups/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ const data = [
icon: iconWindows,
description:
'Targeting application layer support for Windows. From tooling to enablement and optimization of libraries on the Windows platform',
googlegroupname: 'windows-on-arm',
// googlegroupname: 'windows-on-arm',
slug: 'windows-on-arm',
githubUrl: 'https://github.com/CoreCollective-dev/windows-on-arm-wg',
// githubUrl: 'https://github.com/CoreCollective-dev/windows-on-arm-wg',
},
{
title: 'Android',
Expand All @@ -61,7 +61,8 @@ const data = [
icon: iconSOAFEE,
description:
'Cloud native software development methodology for physical AI.',
archiveUrl: 'https://www.soafee.io',
url: 'https://www.soafee.io'
// archiveUrl: 'https://www.soafee.io',
},
{
title: 'Technical Advisory Committee',
Expand Down Expand Up @@ -101,7 +102,7 @@ const data = [
// If the WG has a dedicated sub-page (slug), link there. Otherwise fall back to GitHub or archive.
const titleUrl = item.slug
? `/working-groups/${item.slug}/`
: (item.githubUrl || archiveUrl);
: (item.githubUrl || archiveUrl || item.url);
const titleIsExternal = !item.slug;

return (
Expand Down
Loading