diff options
author | Revanshu Paliwal <revanshu.paliwal@sonarsource.com> | 2022-03-11 16:06:16 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-03-14 20:03:08 +0000 |
commit | 6b309a45b4386c3d1c3e45accc42769260c19d42 (patch) | |
tree | 6cc7759a9660be0534bfa18dc13a5b1630711e7a /server/sonar-web/src/main | |
parent | 15e088d040984e033a74877b5e42babeb365ded9 (diff) | |
download | sonarqube-6b309a45b4386c3d1c3e45accc42769260c19d42.tar.gz sonarqube-6b309a45b4386c3d1c3e45accc42769260c19d42.zip |
SONAR-16101 Changing label based on feedbacks
Diffstat (limited to 'server/sonar-web/src/main')
2 files changed, 6 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/StatusUpdateSuccessModal.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/components/StatusUpdateSuccessModal.tsx index 39b038eb624..3cfd92e294d 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/components/StatusUpdateSuccessModal.tsx +++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/StatusUpdateSuccessModal.tsx @@ -47,11 +47,11 @@ export default function StatusUpdateSuccessModal(props: StatusUpdateSuccessModal return ( <Modal contentLabel={modalTitle}> - <div className="modal-head huge text-center text-bold"> + <div className="modal-head big text-center text-bold"> <p>{translateWithParameters('hotspots.successful_status_change_to_x', statusLabel)}</p> </div> - <div className="modal-body text-center big"> + <div className="modal-body text-center"> <FormattedMessage id="hotspots.successfully_changed_to_x" defaultMessage={translate('hotspots.find_in_status_filter_x')} diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/__tests__/__snapshots__/StatusUpdateSuccessModal-test.tsx.snap b/server/sonar-web/src/main/js/apps/security-hotspots/components/__tests__/__snapshots__/StatusUpdateSuccessModal-test.tsx.snap index 3fedbef7b09..136d52ffa71 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/components/__tests__/__snapshots__/StatusUpdateSuccessModal-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/__tests__/__snapshots__/StatusUpdateSuccessModal-test.tsx.snap @@ -5,14 +5,14 @@ exports[`should render correctly: default 1`] = ` contentLabel="hotspots.congratulations" > <div - className="modal-head huge text-center text-bold" + className="modal-head big text-center text-bold" > <p> hotspots.successful_status_change_to_x.hotspots.status_option.FIXED </p> </div> <div - className="modal-body text-center big" + className="modal-body text-center" > <FormattedMessage defaultMessage="hotspots.find_in_status_filter_x" @@ -64,14 +64,14 @@ exports[`should render correctly: opening hotspots again 1`] = ` contentLabel="hotspots.update.success" > <div - className="modal-head huge text-center text-bold" + className="modal-head big text-center text-bold" > <p> hotspots.successful_status_change_to_x.hotspots.status_option.TO_REVIEW </p> </div> <div - className="modal-body text-center big" + className="modal-body text-center" > <FormattedMessage defaultMessage="hotspots.find_in_status_filter_x" |