Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b1c4fdec
Commit
b1c4fdec
authored
Apr 13, 2018
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] Fix form for new issuable
parent
67cedaa9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
app/views/shared/issuable/_form.html.haml
app/views/shared/issuable/_form.html.haml
+1
-1
app/views/shared/issuable/form/_branch_chooser.html.haml
app/views/shared/issuable/form/_branch_chooser.html.haml
+4
-4
app/views/shared/issuable/form/_metadata.html.haml
app/views/shared/issuable/form/_metadata.html.haml
+7
-7
app/views/shared/issuable/form/_metadata_merge_request_assignee.html.haml
.../issuable/form/_metadata_merge_request_assignee.html.haml
+1
-1
No files found.
app/views/shared/issuable/_form.html.haml
View file @
b1c4fdec
...
...
@@ -12,7 +12,7 @@
and make sure your changes will not unintentionally remove theirs
.form-group.row
=
form
.
label
:title
,
class:
'col-form-label'
=
form
.
label
:title
,
class:
'col-form-label
col-sm-2
'
=
render
'shared/issuable/form/template_selector'
,
issuable:
issuable
=
render
'shared/issuable/form/title'
,
issuable:
issuable
,
form:
form
,
has_wip_commits:
commits
&&
commits
.
detect
(
&
:work_in_progress?
)
...
...
app/views/shared/issuable/form/_branch_chooser.html.haml
View file @
b1c4fdec
...
...
@@ -6,13 +6,13 @@
%hr
-
if
issuable
.
new_record?
.form-group
=
form
.
label
:source_branch
,
class:
'col-form-label'
.form-group
.row
=
form
.
label
:source_branch
,
class:
'col-form-label
col-sm-2
'
.col-sm-10
.issuable-form-select-holder
=
form
.
select
(
:source_branch
,
[
issuable
.
source_branch
],
{},
{
class:
'source_branch select2 ref-name'
,
disabled:
true
})
.form-group
=
form
.
label
:target_branch
,
class:
'col-form-label'
.form-group
.row
=
form
.
label
:target_branch
,
class:
'col-form-label
col-sm-2
'
.col-sm-10.target-branch-select-dropdown-container
.issuable-form-select-holder
=
form
.
hidden_field
(
:target_branch
,
...
...
app/views/shared/issuable/form/_metadata.html.haml
View file @
b1c4fdec
...
...
@@ -9,27 +9,27 @@
%hr
.row
%div
{
class:
(
has_due_date
?
"col-lg-6"
:
"col-sm-12"
)
}
.form-group.issue-assignee
.form-group.
row.
issue-assignee
-
if
issuable
.
is_a?
(
Issue
)
=
render
"shared/issuable/form/metadata_issue_assignee"
,
issuable:
issuable
,
form:
form
,
has_due_date:
has_due_date
-
else
=
render
"shared/issuable/form/metadata_merge_request_assignee"
,
issuable:
issuable
,
form:
form
,
has_due_date:
has_due_date
.form-group.issue-milestone
=
form
.
label
:milestone_id
,
"Milestone"
,
class:
"col-form-label
#{
"col-lg-4"
if
has_due_date
}
"
.form-group.
row.
issue-milestone
=
form
.
label
:milestone_id
,
"Milestone"
,
class:
"col-form-label
#{
has_due_date
?
"col-lg-4"
:
"col-sm-2"
}
"
.col-sm-10
{
class:
(
"col-lg-8"
if
has_due_date
)
}
.issuable-form-select-holder
=
render
"shared/issuable/milestone_dropdown"
,
selected:
issuable
.
milestone
,
name:
"
#{
issuable
.
class
.
model_name
.
param_key
}
[milestone_id]"
,
show_any:
false
,
show_upcoming:
false
,
show_started:
false
,
extra_class:
"js-issuable-form-dropdown js-dropdown-keep-input"
,
dropdown_title:
"Select milestone"
.form-group
.form-group
.row
-
has_labels
=
@labels
&&
@labels
.
any?
=
form
.
label
:label_ids
,
"Labels"
,
class:
"col-form-label
#{
"col-lg-4"
if
has_due_date
}
"
=
form
.
label
:label_ids
,
"Labels"
,
class:
"col-form-label
#{
has_due_date
?
"col-lg-4"
:
"col-sm-2"
}
"
=
form
.
hidden_field
:label_ids
,
multiple:
true
,
value:
''
.col-sm-10
{
class:
"#{"
col
-
lg
-
8
" if has_due_date} #{'issuable-form-padding-top' if !has_labels}"
}
.issuable-form-select-holder
=
render
"shared/issuable/label_dropdown"
,
classes:
[
"js-issuable-form-dropdown"
],
selected:
issuable
.
labels
,
data_options:
{
field_name:
"
#{
issuable
.
class
.
model_name
.
param_key
}
[label_ids][]"
,
show_any:
false
},
dropdown_title:
"Select label"
-
if
has_due_date
.col-lg-6
.form-group
=
form
.
label
:due_date
,
"Due date"
,
class:
"col-form-label"
.form-group
.row
=
form
.
label
:due_date
,
"Due date"
,
class:
"col-form-label
col-sm-2
"
.col-sm-10
.issuable-form-select-holder
=
form
.
text_field
:due_date
,
id:
"issuable-due-date"
,
class:
"datepicker form-control"
,
placeholder:
"Select due date"
app/views/shared/issuable/form/_metadata_merge_request_assignee.html.haml
View file @
b1c4fdec
=
form
.
label
:assignee_id
,
"Assignee"
,
class:
"col-form-label
#{
"col-lg-4"
if
has_due_date
}
"
=
form
.
label
:assignee_id
,
"Assignee"
,
class:
"col-form-label
#{
has_due_date
?
"col-lg-4"
:
"col-sm-2"
}
"
.col-sm-10
{
class:
(
"col-lg-8"
if
has_due_date
)
}
.issuable-form-select-holder
=
form
.
hidden_field
:assignee_id
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment