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
66d9c9e0
Commit
66d9c9e0
authored
Jun 21, 2018
by
Felipe Artur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts
parent
36c9a650
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
18 deletions
+0
-18
app/assets/javascripts/notes/components/comment_form.vue
app/assets/javascripts/notes/components/comment_form.vue
+0
-8
app/models/concerns/issuable.rb
app/models/concerns/issuable.rb
+0
-7
app/models/merge_request.rb
app/models/merge_request.rb
+0
-3
No files found.
app/assets/javascripts/notes/components/comment_form.vue
View file @
66d9c9e0
...
...
@@ -7,15 +7,11 @@ import { __, sprintf } from '~/locale';
import
Flash
from
'
../../flash
'
;
import
Autosave
from
'
../../autosave
'
;
import
TaskList
from
'
../../task_list
'
;
<<<<<<<
HEAD
import
{
capitalizeFirstCharacter
,
convertToCamelCase
,
splitCamelCase
,
}
from
'
../../lib/utils/text_utility
'
;
=======
import
{
capitalizeFirstCharacter
,
convertToCamelCase
,
splitCamelCase
}
from
'
../../lib/utils/text_utility
'
;
>>>>>>>
upstream
/
master
import
*
as
constants
from
'
../constants
'
;
import
eventHub
from
'
../event_hub
'
;
import
issueWarning
from
'
../../vue_shared/components/issue/issue_warning.vue
'
;
...
...
@@ -125,13 +121,9 @@ export default {
return
this
.
getNoteableData
.
create_note_path
;
},
issuableTypeTitle
()
{
<<<<<<<
HEAD
return
this
.
noteableType
===
constants
.
MERGE_REQUEST_NOTEABLE_TYPE
?
'
merge request
'
:
'
issue
'
;
=======
return
this
.
noteableType
===
constants
.
MERGE_REQUEST_NOTEABLE_TYPE
?
'
merge request
'
:
'
issue
'
;
>>>>>>>
upstream
/
master
},
},
watch
:
{
...
...
app/models/concerns/issuable.rb
View file @
66d9c9e0
...
...
@@ -112,13 +112,6 @@ module Issuable
def
etag_caching_enabled?
false
<<<<<<<
HEAD
=======
end
def
has_multiple_assignees?
assignees
.
count
>
1
>>>>>>>
upstream
/
master
end
end
...
...
app/models/merge_request.rb
View file @
66d9c9e0
...
...
@@ -1130,15 +1130,12 @@ class MergeRequest < ActiveRecord::Base
true
end
<<<<<<<
HEAD
def
base_pipeline
@base_pipeline
||=
project
.
pipelines
.
order
(
id: :desc
)
.
find_by
(
sha:
diff_base_sha
)
end
=======
>>>>>>>
upstream
/
master
def
discussions_rendered_on_frontend?
true
end
...
...
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