Commit 0fed2ce1 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 f86e0d6e ced89e04
...@@ -673,12 +673,7 @@ ...@@ -673,12 +673,7 @@
<span class="folder-icon"> <span class="folder-icon">
<i <i
class="fa fa-folder" class="fa fa-folder"
<<<<<<< HEAD
aria-hidden="true"
>
=======
aria-hidden="true"> aria-hidden="true">
>>>>>>> upstream/master
</i> </i>
</span> </span>
......
<script> <script>
/** /**
<<<<<<< HEAD
* Renders the Monitoring (Metrics) link in environments table.
*/
=======
* Renders the Monitoring (Metrics) link in environments table. * Renders the Monitoring (Metrics) link in environments table.
*/ */
>>>>>>> upstream/master
import tooltip from '../../vue_shared/directives/tooltip'; import tooltip from '../../vue_shared/directives/tooltip';
export default { export default {
directives: { directives: {
tooltip, tooltip,
<<<<<<< HEAD
},
props: {
monitoringUrl: {
type: String,
required: true,
},
},
=======
}, },
props: { props: {
...@@ -29,7 +15,6 @@ ...@@ -29,7 +15,6 @@
required: true, required: true,
}, },
}, },
>>>>>>> upstream/master
computed: { computed: {
title() { title() {
......
<script> <script>
/** /**
<<<<<<< HEAD
* Renders Rollback or Re deploy button in environments table depending
* of the provided property `isLastDeployment`.
*
* Makes a post request when the button is clicked.
*/
=======
* Renders Rollback or Re deploy button in environments table depending * Renders Rollback or Re deploy button in environments table depending
* of the provided property `isLastDeployment`. * of the provided property `isLastDeployment`.
* *
* Makes a post request when the button is clicked. * Makes a post request when the button is clicked.
*/ */
>>>>>>> upstream/master
import eventHub from '../event_hub'; import eventHub from '../event_hub';
import loadingIcon from '../../vue_shared/components/loading_icon.vue'; import loadingIcon from '../../vue_shared/components/loading_icon.vue';
...@@ -20,16 +12,12 @@ ...@@ -20,16 +12,12 @@
components: { components: {
loadingIcon, loadingIcon,
}, },
<<<<<<< HEAD
=======
>>>>>>> upstream/master
props: { props: {
retryUrl: { retryUrl: {
type: String, type: String,
default: '', default: '',
}, },
<<<<<<< HEAD
isLastDeployment: { isLastDeployment: {
type: Boolean, type: Boolean,
...@@ -37,15 +25,6 @@ ...@@ -37,15 +25,6 @@
}, },
}, },
=======
isLastDeployment: {
type: Boolean,
default: true,
},
},
>>>>>>> upstream/master
data() { data() {
return { return {
isLoading: false, isLoading: false,
......
<script> <script>
/** /**
<<<<<<< HEAD
* Renders the stop "button" that allows stop an environment.
* Used in environments table.
*/
=======
* Renders the stop "button" that allows stop an environment. * Renders the stop "button" that allows stop an environment.
* Used in environments table. * Used in environments table.
*/ */
>>>>>>> upstream/master
import eventHub from '../event_hub'; import eventHub from '../event_hub';
import loadingIcon from '../../vue_shared/components/loading_icon.vue'; import loadingIcon from '../../vue_shared/components/loading_icon.vue';
import tooltip from '../../vue_shared/directives/tooltip'; import tooltip from '../../vue_shared/directives/tooltip';
...@@ -16,18 +10,11 @@ ...@@ -16,18 +10,11 @@
export default { export default {
components: { components: {
loadingIcon, loadingIcon,
<<<<<<< HEAD
},
directives: {
tooltip,
},
=======
}, },
directives: { directives: {
tooltip, tooltip,
}, },
>>>>>>> upstream/master
props: { props: {
stopUrl: { stopUrl: {
......
<script> <script>
/** /**
<<<<<<< HEAD
* Renders a terminal button to open a web terminal.
* Used in environments table.
*/
=======
* Renders a terminal button to open a web terminal. * Renders a terminal button to open a web terminal.
* Used in environments table. * Used in environments table.
*/ */
>>>>>>> upstream/master
import terminalIconSvg from 'icons/_icon_terminal.svg'; import terminalIconSvg from 'icons/_icon_terminal.svg';
import tooltip from '../../vue_shared/directives/tooltip'; import tooltip from '../../vue_shared/directives/tooltip';
export default { export default {
directives: { directives: {
tooltip, tooltip,
<<<<<<< HEAD
},
props: {
terminalPath: {
type: String,
required: false,
default: '',
},
},
data() {
return {
terminalIconSvg,
};
},
=======
}, },
props: { props: {
...@@ -45,7 +24,6 @@ ...@@ -45,7 +24,6 @@
terminalIconSvg, terminalIconSvg,
}; };
}, },
>>>>>>> upstream/master
computed: { computed: {
title() { title() {
......
...@@ -87,12 +87,7 @@ export default { ...@@ -87,12 +87,7 @@ export default {
</div> </div>
<template <template
v-for="(model, i) in environments" v-for="(model, i) in environments"
<<<<<<< HEAD
:model="model"
>
=======
:model="model"> :model="model">
>>>>>>> upstream/master
<div <div
is="environment-item" is="environment-item"
:model="model" :model="model"
...@@ -100,7 +95,6 @@ export default { ...@@ -100,7 +95,6 @@ export default {
:can-read-environment="canReadEnvironment" :can-read-environment="canReadEnvironment"
:key="i" :key="i"
/> />
<<<<<<< HEAD
<div <div
v-if="model.hasDeployBoard && model.isDeployBoardVisible" v-if="model.hasDeployBoard && model.isDeployBoardVisible"
...@@ -115,20 +109,13 @@ export default { ...@@ -115,20 +109,13 @@ export default {
/> />
</div> </div>
</div> </div>
=======
>>>>>>> upstream/master
<template <template
v-if="shouldRenderFolderContent(model)" v-if="shouldRenderFolderContent(model)"
> >
<div <div
v-if="model.isLoadingFolderContent" v-if="model.isLoadingFolderContent"
<<<<<<< HEAD
:key="i"
>
=======
:key="i"> :key="i">
>>>>>>> upstream/master
<loading-icon size="2" /> <loading-icon size="2" />
</div> </div>
......
...@@ -29,10 +29,6 @@ ...@@ -29,10 +29,6 @@
required: true, required: true,
}, },
}, },
<<<<<<< HEAD
=======
>>>>>>> upstream/master
methods: { methods: {
successCallback(resp) { successCallback(resp) {
this.saveData(resp); this.saveData(resp);
......
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