Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-11 09:08:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-11 09:08:59 +0300
commit4714aa72e30e131f9917d43645b1b28a298c0acd (patch)
treebca15aa12918097baa51f81b3e00c2e2e5776f70 /app/assets/javascripts/vue_shared/components/deployment_instance.vue
parent9d5d5a163f7634ffd555bffa545008ae3991c298 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/deployment_instance.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/deployment_instance.vue18
1 files changed, 1 insertions, 17 deletions
diff --git a/app/assets/javascripts/vue_shared/components/deployment_instance.vue b/app/assets/javascripts/vue_shared/components/deployment_instance.vue
index 4aae86fc82b..1b907078cf9 100644
--- a/app/assets/javascripts/vue_shared/components/deployment_instance.vue
+++ b/app/assets/javascripts/vue_shared/components/deployment_instance.vue
@@ -13,8 +13,6 @@
* Mockup is https://gitlab.com/gitlab-org/gitlab/issues/35570
*/
import { GlLink, GlTooltipDirective } from '@gitlab/ui';
-import { mergeUrlParams } from '~/lib/utils/url_utility';
-import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
export default {
components: {
@@ -23,7 +21,6 @@ export default {
directives: {
GlTooltip: GlTooltipDirective,
},
- mixins: [glFeatureFlagsMixin()],
props: {
/**
* Represents the status of the pod. Each state is represented with a different
@@ -54,17 +51,11 @@ export default {
required: false,
default: '',
},
-
- logsPath: {
- type: String,
- required: false,
- default: '',
- },
},
computed: {
isLink() {
- return this.logsPath !== '' && this.podName !== '';
+ return this.podName !== '';
},
cssClass() {
@@ -74,12 +65,6 @@ export default {
link: this.isLink,
};
},
-
- computedLogPath() {
- return this.isLink && this.glFeatures.monitorLogging
- ? mergeUrlParams({ pod_name: this.podName }, this.logsPath)
- : null;
- },
},
};
</script>
@@ -88,7 +73,6 @@ export default {
v-gl-tooltip
:class="cssClass"
:title="tooltipText"
- :href="computedLogPath"
class="deployment-instance d-flex justify-content-center align-items-center"
/>
</template>