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:
Diffstat (limited to 'app/assets/javascripts/jobs/components/job/sidebar/job_retry_forward_deployment_modal.vue')
-rw-r--r--app/assets/javascripts/jobs/components/job/sidebar/job_retry_forward_deployment_modal.vue64
1 files changed, 0 insertions, 64 deletions
diff --git a/app/assets/javascripts/jobs/components/job/sidebar/job_retry_forward_deployment_modal.vue b/app/assets/javascripts/jobs/components/job/sidebar/job_retry_forward_deployment_modal.vue
deleted file mode 100644
index a3f1a2c4be8..00000000000
--- a/app/assets/javascripts/jobs/components/job/sidebar/job_retry_forward_deployment_modal.vue
+++ /dev/null
@@ -1,64 +0,0 @@
-<script>
-import { GlLink, GlModal } from '@gitlab/ui';
-import { JOB_RETRY_FORWARD_DEPLOYMENT_MODAL } from '~/jobs/constants';
-
-export default {
- name: 'JobRetryForwardDeploymentModal',
- components: {
- GlLink,
- GlModal,
- },
- i18n: {
- ...JOB_RETRY_FORWARD_DEPLOYMENT_MODAL,
- },
- inject: {
- retryOutdatedJobDocsUrl: {
- default: '',
- },
- },
- props: {
- modalId: {
- type: String,
- required: true,
- },
- href: {
- type: String,
- required: true,
- },
- },
- data() {
- return {
- primaryProps: {
- text: this.$options.i18n.primaryText,
- attributes: {
- 'data-method': 'post',
- 'data-testid': 'retry-button-modal',
- href: this.href,
- variant: 'danger',
- },
- },
- cancelProps: {
- text: this.$options.i18n.cancel,
- attributes: { category: 'secondary', variant: 'default' },
- },
- };
- },
-};
-</script>
-
-<template>
- <gl-modal
- :action-cancel="cancelProps"
- :action-primary="primaryProps"
- :modal-id="modalId"
- :title="$options.i18n.title"
- >
- <p>
- {{ $options.i18n.info }}
- <gl-link v-if="retryOutdatedJobDocsUrl" :href="retryOutdatedJobDocsUrl" target="_blank">
- {{ $options.i18n.moreInfo }}
- </gl-link>
- </p>
- <p>{{ $options.i18n.areYouSure }}</p>
- </gl-modal>
-</template>