Merge pull request #68 from marshmalien/ux/fix/projects

[UX] Fix SCM dropdown text and alertblock css
This commit is contained in:
Marliana Lara 2017-07-27 15:40:12 -04:00 committed by GitHub
commit 2a8a178cc5
2 changed files with 3 additions and 3 deletions

View File

@ -294,11 +294,10 @@
}
.Form-alertblock {
margin: 20px 0;
margin: 0;
font-size: 12px;
width: 100%;
padding: 15px;
padding-top: 10px;
padding: 20px;
margin-bottom: 15px;
border-radius: 4px;
border: 1px solid @login-notice-border;

View File

@ -55,6 +55,7 @@ export default ['i18n', 'NotificationsList', function(i18n, NotificationsList) {
label: i18n._('SCM Type'),
type: 'select',
class: 'Form-dropDown--scmType',
defaultText: 'Choose an SCM Type',
ngOptions: 'type.label for type in scm_type_options track by type.value',
ngChange: 'scmChange()',
required: true,