diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2018-10-24 10:36:44 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-11-16 20:21:04 +0100 |
commit | 7c133fcc9d877837e18fef5c9d83cce463adbd7f (patch) | |
tree | f0e71b401bb7e9348e26d1576c7f9285b0ea6d3a /server/sonar-web/src/main/js/apps/coding-rules | |
parent | f714aa7a66fd87a39898390edd0c15f0c77dd248 (diff) | |
download | sonarqube-7c133fcc9d877837e18fef5c9d83cce463adbd7f.tar.gz sonarqube-7c133fcc9d877837e18fef5c9d83cce463adbd7f.zip |
SONAR-11321 Suggest valid organization key
Diffstat (limited to 'server/sonar-web/src/main/js/apps/coding-rules')
-rw-r--r-- | server/sonar-web/src/main/js/apps/coding-rules/components/CustomRuleFormModal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/coding-rules/components/CustomRuleFormModal.tsx b/server/sonar-web/src/main/js/apps/coding-rules/components/CustomRuleFormModal.tsx index 76723ce03cb..d36fa16ea74 100644 --- a/server/sonar-web/src/main/js/apps/coding-rules/components/CustomRuleFormModal.tsx +++ b/server/sonar-web/src/main/js/apps/coding-rules/components/CustomRuleFormModal.tsx @@ -23,12 +23,12 @@ import Modal from '../../../components/controls/Modal'; import { translate } from '../../../helpers/l10n'; import MarkdownTips from '../../../components/common/MarkdownTips'; import { SEVERITIES, RULE_TYPES, RULE_STATUSES } from '../../../helpers/constants'; -import latinize from '../../../helpers/latinize'; import Select from '../../../components/controls/Select'; import TypeHelper from '../../../components/shared/TypeHelper'; import SeverityHelper from '../../../components/shared/SeverityHelper'; import { createRule, updateRule } from '../../../api/rules'; import { csvEscape } from '../../../helpers/csv'; +import { latinize } from '../../../helpers/strings'; import { SubmitButton, ResetButtonLink } from '../../../components/ui/buttons'; import { Alert } from '../../../components/ui/Alert'; |