Skip to content

Commit

Permalink
fix: add link to known issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceoq committed Jan 24, 2024
1 parent 9781353 commit 42f4679
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const knownIssuesData = (intl: IntlShape) => {
description: intl.formatMessage({
id: 'sidebar_known_issues.description',
}),
link: '#', //TODO: Trocar rota
link: '/known-issues',
},
{
id: 'Support Rules',
Expand Down Expand Up @@ -179,7 +179,7 @@ export const menuSupportData = (intl: IntlShape) => {
description: intl.formatMessage({
id: 'sidebar_known_issues.description',
}),
link: '#', //TODO: Trocar rota
link: '/known-issues', //TODO: Trocar rota
},
{
id: 'Status',
Expand Down Expand Up @@ -440,6 +440,20 @@ export const knownIssuesStatusFilter = (intl: IntlShape) => {
id: 'Fixed',
name: intl.formatMessage({ id: 'known_issues_filter_status.fixed' }),
},
{
id: 'Backlog',
name: intl.formatMessage({ id: 'known_issues_filter_status.backlog' }),
},
{
id: 'Scheduled',
name: intl.formatMessage({
id: 'known_issues_filter_status.scheduled',
}),
},
{
id: 'No fix',
name: intl.formatMessage({ id: 'known_issues_filter_status.no_fix' }),
},
],
}

Expand Down

0 comments on commit 42f4679

Please sign in to comment.