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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
b2d577a7
Commit
b2d577a7
authored
Jun 02, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up merge issues
parent
5a4a0824
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
app/assets/javascripts/issue_show/components/app.vue
app/assets/javascripts/issue_show/components/app.vue
+3
-0
app/helpers/issuables_helper.rb
app/helpers/issuables_helper.rb
+3
-1
db/schema.rb
db/schema.rb
+1
-1
No files found.
app/assets/javascripts/issue_show/components/app.vue
View file @
b2d577a7
...
...
@@ -117,6 +117,9 @@ export default {
formState
()
{
return
this
.
store
.
formState
;
},
hasUpdated
()
{
return
!!
this
.
state
.
updatedAt
;
},
},
components
:
{
descriptionComponent
,
...
...
app/helpers/issuables_helper.rb
View file @
b2d577a7
...
...
@@ -219,7 +219,9 @@ module IssuablesHelper
initialDescriptionText:
issuable
.
description
}
data
.
merge
(
updated_at_by
(
issue
))
data
.
merge!
(
updated_at_by
(
issuable
))
data
.
to_json
end
def
updated_at_by
(
issuable
)
...
...
db/schema.rb
View file @
b2d577a7
...
...
@@ -1446,8 +1446,8 @@ ActiveRecord::Schema.define(version: 20170525174156) do
t
.
string
"token"
t
.
boolean
"pipeline_events"
,
default:
false
,
null:
false
t
.
boolean
"confidential_issues_events"
,
default:
false
,
null:
false
t
.
boolean
"job_events"
,
default:
false
,
null:
false
t
.
boolean
"repository_update_events"
,
default:
false
,
null:
false
t
.
boolean
"job_events"
,
default:
false
,
null:
false
end
add_index
"web_hooks"
,
[
"project_id"
],
name:
"index_web_hooks_on_project_id"
,
using: :btree
...
...
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