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>2024-01-09 03:13:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-09 03:13:20 +0300
commit3f8e9ba69efda3ef8f3989c5c4d56e422367200a (patch)
tree2d9595bc11eac94c7ff11aa1c2497dd269f81054 /app/assets/javascripts/pages
parent5b5ff31460fc5572abbd8b7ee35f303a6f1df196 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pages')
-rw-r--r--app/assets/javascripts/pages/import/bulk_imports/history/components/bulk_imports_history_app.vue21
1 files changed, 1 insertions, 20 deletions
diff --git a/app/assets/javascripts/pages/import/bulk_imports/history/components/bulk_imports_history_app.vue b/app/assets/javascripts/pages/import/bulk_imports/history/components/bulk_imports_history_app.vue
index 1d54dad43a9..e66040c5a99 100644
--- a/app/assets/javascripts/pages/import/bulk_imports/history/components/bulk_imports_history_app.vue
+++ b/app/assets/javascripts/pages/import/bulk_imports/history/components/bulk_imports_history_app.vue
@@ -1,6 +1,5 @@
<script>
import {
- GlButton,
GlEmptyState,
GlIcon,
GlLink,
@@ -22,7 +21,6 @@ import { WORKSPACE_GROUP, WORKSPACE_PROJECT } from '~/issues/constants';
import PaginationBar from '~/vue_shared/components/pagination_bar/pagination_bar.vue';
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';
import LocalStorageSync from '~/vue_shared/components/local_storage_sync.vue';
-import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { isImporting } from '../utils';
import { DEFAULT_ERROR } from '../utils/error_messages';
@@ -43,7 +41,6 @@ const tableCell = (config) => ({
export default {
components: {
- GlButton,
GlEmptyState,
GlIcon,
GlLink,
@@ -59,8 +56,6 @@ export default {
GlTooltip,
},
- mixins: [glFeatureFlagMixin()],
-
inject: ['realtimeChangesPath'],
data() {
@@ -107,10 +102,6 @@ export default {
.map((item) => item.bulk_import_id);
},
- showDetailsLink() {
- return this.glFeatures.bulkImportDetailsPage;
- },
-
paginationConfigCopy() {
return { ...this.paginationConfig };
},
@@ -265,7 +256,7 @@ export default {
<template #cell(created_at)="{ value }">
<time-ago :time="value" />
</template>
- <template #cell(status)="{ value, item, toggleDetails, detailsShowing }">
+ <template #cell(status)="{ value, item }">
<div
class="gl-display-flex gl-flex-direction-column gl-lg-flex-direction-row gl-align-items-flex-start gl-justify-content-space-between gl-gap-3"
>
@@ -273,20 +264,10 @@ export default {
:id="item.bulk_import_id"
:entity-id="item.id"
:has-failures="item.has_failures"
- :show-details-link="showDetailsLink"
:status="value"
/>
- <gl-button
- v-if="!showDetailsLink && item.failures.length"
- :selected="detailsShowing"
- @click="toggleDetails"
- >{{ __('Details') }}</gl-button
- >
</div>
</template>
- <template #row-details="{ item }">
- <pre><code>{{ item.failures }}</code></pre>
- </template>
</gl-table-lite>
<pagination-bar
:page-info="pageInfo"