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
76904a28
Commit
76904a28
authored
Nov 16, 2017
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tasklist for epics
parent
455ffc96
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
1 deletion
+13
-1
app/assets/javascripts/issue_show/components/app.vue
app/assets/javascripts/issue_show/components/app.vue
+1
-0
app/assets/javascripts/issue_show/components/description.vue
app/assets/javascripts/issue_show/components/description.vue
+6
-1
changelogs/unreleased-ee/fix-epic-tasklist.yml
changelogs/unreleased-ee/fix-epic-tasklist.yml
+5
-0
ee/app/assets/javascripts/epics/epic_show/components/epic_show_app.vue
.../javascripts/epics/epic_show/components/epic_show_app.vue
+1
-0
No files found.
app/assets/javascripts/issue_show/components/app.vue
View file @
76904a28
...
...
@@ -250,6 +250,7 @@ export default {
:description-text=
"state.descriptionText"
:updated-at=
"state.updatedAt"
:task-status=
"state.taskStatus"
:issuable-type=
"issuableType"
/>
<edited-component
v-if=
"hasUpdated"
...
...
app/assets/javascripts/issue_show/components/description.vue
View file @
76904a28
...
...
@@ -22,6 +22,11 @@
required
:
false
,
default
:
''
,
},
issuableType
:
{
type
:
String
,
required
:
false
,
default
:
'
issue
'
,
},
},
data
()
{
return
{
...
...
@@ -48,7 +53,7 @@
if
(
this
.
canUpdate
)
{
// eslint-disable-next-line no-new
new
TaskList
({
dataType
:
'
issue
'
,
dataType
:
this
.
issuableType
,
fieldName
:
'
description
'
,
selector
:
'
.detail-page-description
'
,
});
...
...
changelogs/unreleased-ee/fix-epic-tasklist.yml
0 → 100644
View file @
76904a28
---
title
:
Fix tasklist for epics
merge_request
:
author
:
type
:
fixed
ee/app/assets/javascripts/epics/epic_show/components/epic_show_app.vue
View file @
76904a28
...
...
@@ -112,6 +112,7 @@
:can-destroy=
"canDestroy"
:endpoint=
"endpoint"
:issuable-ref=
"issuableRef"
issuable-type=
"epic"
:initial-title-html=
"initialTitleHtml"
:initial-title-text=
"initialTitleText"
:initial-description-html=
"initialDescriptionHtml"
...
...
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