Skip to content

Commit

Permalink
fix: prevent prefetching all STR_ links in view (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueBrain authored Apr 28, 2024
1 parent 5f55453 commit 7f634cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/translation/[project]/[language]/Listing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const ListingItemRef = ({ items, id, name }: { items?: string[], id: string, nam
{length !== 0 && <Table.Tbody>
{items?.map((key) => (
<Table.Tr key={key}>
<Table.Td><Anchor size="sm" component={Link} href={`/string/${project.project}/${language.language}?id=${key}`}>{key}</Anchor></Table.Td>
<Table.Td><Anchor size="sm" component={Link} href={`/string/${project.project}/${language.language}#id=${key}`}>{key}</Anchor></Table.Td>
</Table.Tr>
))}
</Table.Tbody>}
Expand Down

0 comments on commit 7f634cd

Please sign in to comment.