diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2022-07-28 09:13:14 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-29 20:03:15 +0000 |
commit | d7cee560e74b5a43397724093f6a55c42a6d4324 (patch) | |
tree | 427b9977bb3beb82ac4345b297d1a5629c9a94ce /server/sonar-web/src/main/js/app | |
parent | 73fb8b29fa25b2b4cf0a4814dc48f2caa8567a38 (diff) | |
download | sonarqube-d7cee560e74b5a43397724093f6a55c42a6d4324.tar.gz sonarqube-d7cee560e74b5a43397724093f6a55c42a6d4324.zip |
SONAR-16703 [891613] Elements must have sufficient color contrast
Diffstat (limited to 'server/sonar-web/src/main/js/app')
2 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityProfiles.tsx b/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityProfiles.tsx index 8b2c6610232..2b6bac54bbd 100644 --- a/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityProfiles.tsx +++ b/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityProfiles.tsx @@ -91,7 +91,7 @@ export class MetaQualityProfiles extends React.PureComponent<Props, State> { const inner = ( <div className="text-ellipsis"> - <span className="note spacer-right">({languageName})</span> + <span className="spacer-right">({languageName})</span> {profile.deleted ? ( profile.name ) : ( diff --git a/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/__snapshots__/MetaQualityProfiles-test.tsx.snap b/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/__snapshots__/MetaQualityProfiles-test.tsx.snap index 7c3bbe1d70a..0c11ae23f65 100644 --- a/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/__snapshots__/MetaQualityProfiles-test.tsx.snap +++ b/server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/__snapshots__/MetaQualityProfiles-test.tsx.snap @@ -19,7 +19,7 @@ exports[`should render correctly 1`] = ` className="text-ellipsis" > <span - className="note spacer-right" + className="spacer-right" > ( js @@ -36,7 +36,7 @@ exports[`should render correctly 1`] = ` className="text-ellipsis" > <span - className="note spacer-right" + className="spacer-right" > ( CSS @@ -81,7 +81,7 @@ exports[`should render correctly 2`] = ` className="text-ellipsis" > <span - className="note spacer-right" + className="spacer-right" > ( js @@ -102,7 +102,7 @@ exports[`should render correctly 2`] = ` className="text-ellipsis" > <span - className="note spacer-right" + className="spacer-right" > ( CSS |