Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const buildInstallColumns = [
{
key: 'name',
header: 'Framework',
nameCell: true,
href: (row: Record<string, unknown>) =>
`/framework/${getFrameworkSlug(row.package as string)}`,
},
Expand Down
1 change: 1 addition & 0 deletions packages/docs/src/components/DependencyStatsTable.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const depsColumns = [
{
key: 'name',
header: 'Framework',
nameCell: true,
href: (row: Record<string, unknown>) =>
`/framework/${getFrameworkSlug(row.package as string)}`,
},
Expand Down
341 changes: 0 additions & 341 deletions packages/docs/src/components/FrameworkDetail.astro

This file was deleted.

1 change: 1 addition & 0 deletions packages/docs/src/components/SSRStatsTable.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const columns = [
{
key: 'name',
header: 'Framework',
nameCell: true,
href: (row: Record<string, unknown>) =>
row.package !== 'app-baseline-html'
? `/framework/${getFrameworkSlug(row.package as string)}`
Expand Down
Loading
Loading