Commit 9420b79b authored by Luke Bennett's avatar Luke Bennett

Merge branch 'ce-to-ee-2018-01-11' of https://gitlab.com/gitlab-org/gitlab-ee...

Merge branch 'ce-to-ee-2018-01-11' of https://gitlab.com/gitlab-org/gitlab-ee into ce-to-ee-2018-01-11
parents fa4dfd01 38213c2e
...@@ -35,12 +35,9 @@ export default { ...@@ -35,12 +35,9 @@ export default {
type: String, type: String,
default: '', default: '',
}, },
<<<<<<< HEAD
groupId: { groupId: {
type: Number, type: Number,
}, },
=======
>>>>>>> upstream/master
}, },
data() { data() {
return { return {
......
...@@ -67,13 +67,8 @@ ...@@ -67,13 +67,8 @@
// Avoid the potential for the real-time data to say APPLICATION_INSTALLABLE but // Avoid the potential for the real-time data to say APPLICATION_INSTALLABLE but
// we already made a request to install and are just waiting for the real-time // we already made a request to install and are just waiting for the real-time
// to sync up. // to sync up.
<<<<<<< HEAD
return (this.status !== APPLICATION_INSTALLABLE && return (this.status !== APPLICATION_INSTALLABLE &&
this.status !== APPLICATION_ERROR) || this.status !== APPLICATION_ERROR) ||
=======
return (this.status !== APPLICATION_INSTALLABLE
&& this.status !== APPLICATION_ERROR) ||
>>>>>>> upstream/master
this.requestStatus === REQUEST_LOADING || this.requestStatus === REQUEST_LOADING ||
this.requestStatus === REQUEST_SUCCESS; this.requestStatus === REQUEST_SUCCESS;
}, },
......
...@@ -7,10 +7,6 @@ ...@@ -7,10 +7,6 @@
mixins: [ mixins: [
pipelinesMixin, pipelinesMixin,
], ],
<<<<<<< HEAD
=======
>>>>>>> upstream/master
props: { props: {
endpoint: { endpoint: {
type: String, type: String,
......
...@@ -43,12 +43,7 @@ ...@@ -43,12 +43,7 @@
</h5> </h5>
<a <a
:href="mergeRequest.url" :href="mergeRequest.url"
<<<<<<< HEAD
class="issue-link"
>
=======
class="issue-link"> class="issue-link">
>>>>>>> upstream/master
!{{ mergeRequest.iid }} !{{ mergeRequest.iid }}
</a> </a>
&middot; &middot;
...@@ -56,12 +51,7 @@ ...@@ -56,12 +51,7 @@
{{ s__('OpenedNDaysAgo|Opened') }} {{ s__('OpenedNDaysAgo|Opened') }}
<a <a
:href="mergeRequest.url" :href="mergeRequest.url"
<<<<<<< HEAD
class="issue-date"
>
=======
class="issue-date"> class="issue-date">
>>>>>>> upstream/master
{{ mergeRequest.createdAt }} {{ mergeRequest.createdAt }}
</a> </a>
</span> </span>
...@@ -69,12 +59,7 @@ ...@@ -69,12 +59,7 @@
{{ s__('ByAuthor|by') }} {{ s__('ByAuthor|by') }}
<a <a
:href="mergeRequest.author.webUrl" :href="mergeRequest.author.webUrl"
<<<<<<< HEAD
class="issue-author-link"
>
=======
class="issue-author-link"> class="issue-author-link">
>>>>>>> upstream/master
{{ mergeRequest.author.name }} {{ mergeRequest.author.name }}
</a> </a>
</span> </span>
......
...@@ -47,26 +47,14 @@ ...@@ -47,26 +47,14 @@
<a <a
:href="issue.url" :href="issue.url"
class="issue-link" class="issue-link"
<<<<<<< HEAD
>
#{{ issue.iid }}
</a>
=======
>#{{ issue.iid }}</a> >#{{ issue.iid }}</a>
>>>>>>> upstream/master
&middot; &middot;
<span> <span>
{{ s__('OpenedNDaysAgo|Opened') }} {{ s__('OpenedNDaysAgo|Opened') }}
<a <a
:href="issue.url" :href="issue.url"
class="issue-date" class="issue-date"
<<<<<<< HEAD
>
{{ issue.createdAt }}
</a>
=======
>{{ issue.createdAt }}</a> >{{ issue.createdAt }}</a>
>>>>>>> upstream/master
</span> </span>
<span> <span>
{{ s__('ByAuthor|by') }} {{ s__('ByAuthor|by') }}
......
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