Skip to content

Commit

Permalink
fix: update FEC config library to disable dot rule (#264)
Browse files Browse the repository at this point in the history
Fixes #29
  • Loading branch information
gkarat authored May 12, 2022
1 parent 95dfc8a commit 24f92a1
Show file tree
Hide file tree
Showing 3 changed files with 146 additions and 25 deletions.
159 changes: 144 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@formatjs/cli": "4.8.3",
"@patternfly/patternfly": "^4.185.1",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "1.2.1",
"@redhat-cloud-services/frontend-components-config": "^4.6.11",
"@redhat-cloud-services/frontend-components-config": "^4.6.13",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-core": "7.0.0-bridge.0",
Expand Down
10 changes: 1 addition & 9 deletions src/Components/RecsListTable/RecsListTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,7 @@ const RecsListTable = ({ query }) => {
{
title: (
<span key={key}>
<Link
key={key}
// https://github.com/RedHatInsights/ocp-advisor-frontend/issues/29
to={`/recommendations/${
process.env.NODE_ENV === 'development'
? value.rule_id.replaceAll('.', '%2E')
: value.rule_id
}`}
>
<Link key={key} to={`/recommendations/${value.rule_id}`}>
{' '}
{value?.description || value?.rule_id}{' '}
</Link>
Expand Down

0 comments on commit 24f92a1

Please sign in to comment.