Skip to content

Commit

Permalink
fix: update links to reference docs listing Superset issue codes (apa…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaschn authored and SRK committed May 10, 2024
1 parent 8f0ac19 commit 01d96f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ test('should render the link', () => {
const link = screen.getByRole('link');
expect(link).toHaveAttribute(
'href',
`https://superset.apache.org/docs/miscellaneous/issue-codes#issue-${mockedProps.code}`,
`https://superset.apache.org/docs/using-superset/issue-codes#issue-${mockedProps.code}`,
);
});
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function IssueCode({ code, message }: IssueCodeProps) {
<>
{message}{' '}
<a
href={`https://superset.apache.org/docs/miscellaneous/issue-codes#issue-${code}`}
href={`https://superset.apache.org/docs/using-superset/issue-codes#issue-${code}`}
rel="noopener noreferrer"
target="_blank"
>
Expand Down

0 comments on commit 01d96f0

Please sign in to comment.