diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-01-09 10:49:53 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-01-09 20:21:08 +0100 |
commit | e74dca535a14fc636b7dca18a5196d16ee3b365a (patch) | |
tree | c53feedfd7ee7355397f3f70cca063b69198cd6e /server/sonar-web/src/main/js/apps/quality-profiles | |
parent | 75ea5f8b42cef78a7f11b433c470e7b8c4c9945b (diff) | |
download | sonarqube-e74dca535a14fc636b7dca18a5196d16ee3b365a.tar.gz sonarqube-e74dca535a14fc636b7dca18a5196d16ee3b365a.zip |
SONAR-11619 Remove label[for] styling and fix some input ids
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/details/ChangeParentForm.tsx | 1 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/home/CreateProfileForm.tsx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ChangeParentForm.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ChangeParentForm.tsx index 31877770ca8..e44df26c5b5 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ChangeParentForm.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ChangeParentForm.tsx @@ -107,6 +107,7 @@ export default class ChangeParentForm extends React.PureComponent<Props, State> </label> <Select clearable={false} + id="change-profile-parent" name="parentKey" onChange={this.handleSelectChange} options={options} diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/home/CreateProfileForm.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/home/CreateProfileForm.tsx index e062afb0247..cb315fb9400 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/home/CreateProfileForm.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/home/CreateProfileForm.tsx @@ -142,6 +142,7 @@ export default class CreateProfileForm extends React.PureComponent<Props, State> </label> <Select clearable={false} + id="create-profile-language" name="language" onChange={this.handleLanguageChange} options={languages.map(language => ({ |