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/diffs/components/inline_findings.vue')
-rw-r--r--app/assets/javascripts/diffs/components/inline_findings.vue41
1 files changed, 0 insertions, 41 deletions
diff --git a/app/assets/javascripts/diffs/components/inline_findings.vue b/app/assets/javascripts/diffs/components/inline_findings.vue
deleted file mode 100644
index efceedd1141..00000000000
--- a/app/assets/javascripts/diffs/components/inline_findings.vue
+++ /dev/null
@@ -1,41 +0,0 @@
-<script>
-import { GlButton } from '@gitlab/ui';
-import { NEW_CODE_QUALITY_FINDINGS, NEW_SAST_FINDINGS } from '../i18n';
-import DiffInlineFindings from './diff_inline_findings.vue';
-
-export default {
- i18n: {
- newCodeQualityFindings: NEW_CODE_QUALITY_FINDINGS,
- newSastFindings: NEW_SAST_FINDINGS,
- },
- components: { GlButton, DiffInlineFindings },
- props: {
- codeQuality: {
- type: Array,
- required: true,
- },
- },
-};
-</script>
-
-<template>
- <div
- data-testid="inline-findings"
- class="gl-relative inline-findings-list gl-border-top-1 gl-border-bottom-1 gl-bg-gray-10 gl-text-black-normal gl-pl-5 gl-pt-4 gl-pb-4"
- >
- <diff-inline-findings
- v-if="codeQuality.length"
- :title="$options.i18n.newCodeQualityFindings"
- :findings="codeQuality"
- />
-
- <gl-button
- data-testid="inline-findings-close"
- category="tertiary"
- size="small"
- icon="close"
- class="gl-absolute gl-right-2 gl-top-2"
- @click="$emit('hideInlineFindings')"
- />
- </div>
-</template>