diff options
author | Antoine Vigneau <antoine.vigneau@sonarsource.com> | 2024-03-12 11:30:43 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-03-13 20:02:36 +0000 |
commit | 4eec8f1729f8566b9c553d17b09801ba15cccc36 (patch) | |
tree | 0bf43880f7fcc5cc758da6362b8d73f4256a0f04 /server/sonar-web/src/main/js/apps | |
parent | 91841b996da676b769a45dc831d6104465e2fc41 (diff) | |
download | sonarqube-4eec8f1729f8566b9c553d17b09801ba15cccc36.tar.gz sonarqube-4eec8f1729f8566b9c553d17b09801ba15cccc36.zip |
SONAR-21813 Fix SSF-565
Diffstat (limited to 'server/sonar-web/src/main/js/apps')
2 files changed, 9 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/settings/components/almIntegration/GithubForm.tsx b/server/sonar-web/src/main/js/apps/settings/components/almIntegration/GithubForm.tsx index 67d9ed7846d..ac309b19223 100644 --- a/server/sonar-web/src/main/js/apps/settings/components/almIntegration/GithubForm.tsx +++ b/server/sonar-web/src/main/js/apps/settings/components/almIntegration/GithubForm.tsx @@ -56,6 +56,9 @@ export default function GithubForm(props: GithubFormProps) { {translate('settings.almintegration.form.url.github.help2')} <br /> <em>https://api.github.com/</em> + <br /> + <br /> + {translate('settings.almintegration.form.url.github.private_key_warning')} </> } id="url.github" diff --git a/server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/GithubForm-test.tsx.snap b/server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/GithubForm-test.tsx.snap index 1abc6baade5..896a200167a 100644 --- a/server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/GithubForm-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/GithubForm-test.tsx.snap @@ -26,6 +26,9 @@ exports[`should render correctly 1`] = ` <em> https://api.github.com/ </em> + <br /> + <br /> + settings.almintegration.form.url.github.private_key_warning </React.Fragment> } id="url.github" @@ -129,6 +132,9 @@ exports[`should render correctly 2`] = ` <em> https://api.github.com/ </em> + <br /> + <br /> + settings.almintegration.form.url.github.private_key_warning </React.Fragment> } id="url.github" |