Commit 66d9c9e0 authored by Felipe Artur's avatar Felipe Artur

Resolve conflicts

parent 36c9a650
...@@ -7,15 +7,11 @@ import { __, sprintf } from '~/locale'; ...@@ -7,15 +7,11 @@ import { __, sprintf } from '~/locale';
import Flash from '../../flash'; import Flash from '../../flash';
import Autosave from '../../autosave'; import Autosave from '../../autosave';
import TaskList from '../../task_list'; import TaskList from '../../task_list';
<<<<<<< HEAD
import { import {
capitalizeFirstCharacter, capitalizeFirstCharacter,
convertToCamelCase, convertToCamelCase,
splitCamelCase, splitCamelCase,
} from '../../lib/utils/text_utility'; } from '../../lib/utils/text_utility';
=======
import { capitalizeFirstCharacter, convertToCamelCase, splitCamelCase } from '../../lib/utils/text_utility';
>>>>>>> upstream/master
import * as constants from '../constants'; import * as constants from '../constants';
import eventHub from '../event_hub'; import eventHub from '../event_hub';
import issueWarning from '../../vue_shared/components/issue/issue_warning.vue'; import issueWarning from '../../vue_shared/components/issue/issue_warning.vue';
...@@ -125,13 +121,9 @@ export default { ...@@ -125,13 +121,9 @@ export default {
return this.getNoteableData.create_note_path; return this.getNoteableData.create_note_path;
}, },
issuableTypeTitle() { issuableTypeTitle() {
<<<<<<< HEAD
return this.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE return this.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE
? 'merge request' ? 'merge request'
: 'issue'; : 'issue';
=======
return this.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE ? 'merge request' : 'issue';
>>>>>>> upstream/master
}, },
}, },
watch: { watch: {
......
...@@ -112,13 +112,6 @@ module Issuable ...@@ -112,13 +112,6 @@ module Issuable
def etag_caching_enabled? def etag_caching_enabled?
false false
<<<<<<< HEAD
=======
end
def has_multiple_assignees?
assignees.count > 1
>>>>>>> upstream/master
end end
end end
......
...@@ -1130,15 +1130,12 @@ class MergeRequest < ActiveRecord::Base ...@@ -1130,15 +1130,12 @@ class MergeRequest < ActiveRecord::Base
true true
end end
<<<<<<< HEAD
def base_pipeline def base_pipeline
@base_pipeline ||= project.pipelines @base_pipeline ||= project.pipelines
.order(id: :desc) .order(id: :desc)
.find_by(sha: diff_base_sha) .find_by(sha: diff_base_sha)
end end
=======
>>>>>>> upstream/master
def discussions_rendered_on_frontend? def discussions_rendered_on_frontend?
true true
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment