diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2020-12-07 14:34:16 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-12-17 20:08:00 +0000 |
commit | f51011c87bcd75c4d0fe97249dcab145b8da8dc5 (patch) | |
tree | 62574de7e2efb8fae6b0cebb140316343013b10e /server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx | |
parent | 5368594546991fbea6c4b4dcdf2386493b78189d (diff) | |
download | sonarqube-f51011c87bcd75c4d0fe97249dcab145b8da8dc5.tar.gz sonarqube-f51011c87bcd75c4d0fe97249dcab145b8da8dc5.zip |
SONAR-12872 Rename Markdown Syntax to Formatting Syntax
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx b/server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx index cf8413ca5a9..a5c94c651a6 100644 --- a/server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx +++ b/server/sonar-web/src/main/js/apps/issues/components/BulkChangeModal.tsx @@ -32,7 +32,7 @@ import { Alert } from 'sonar-ui-common/components/ui/Alert'; import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n'; import { bulkChangeIssues, searchIssueTags } from '../../../api/issues'; import throwGlobalError from '../../../app/utils/throwGlobalError'; -import MarkdownTips from '../../../components/common/MarkdownTips'; +import FormattingTips from '../../../components/common/FormattingTips'; import SeverityHelper from '../../../components/shared/SeverityHelper'; import Avatar from '../../../components/ui/Avatar'; import { isLoggedIn, isUserActive } from '../../../helpers/users'; @@ -476,7 +476,7 @@ export default class BulkChangeModal extends React.PureComponent<Props, State> { rows={4} value={this.state.comment || ''} /> - <MarkdownTips className="modal-field-descriptor text-right" /> + <FormattingTips className="modal-field-descriptor text-right" /> </div> ); }; |