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-11-11 18:07:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-11 18:07:33 +0300
commit34ce62a494ab1e8f1e76dc4f0bda925593a4c0cb (patch)
treebdf6d89f15cfac499ff6a750c69d78060b1f3bdd /app/assets/javascripts/ci
parent2761b4465bb13e170f0b8b2941d83f356a47eee6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/ci')
-rw-r--r--app/assets/javascripts/ci/runner/group_runners/group_runners_app.vue7
1 files changed, 1 insertions, 6 deletions
diff --git a/app/assets/javascripts/ci/runner/group_runners/group_runners_app.vue b/app/assets/javascripts/ci/runner/group_runners/group_runners_app.vue
index ccccd9fd1b6..91c22923075 100644
--- a/app/assets/javascripts/ci/runner/group_runners/group_runners_app.vue
+++ b/app/assets/javascripts/ci/runner/group_runners/group_runners_app.vue
@@ -148,11 +148,6 @@ export default {
isSearchFiltered() {
return isSearchFiltered(this.search);
},
- shouldEnableBulkDelete() {
- // Feature flag for `runners_group_bulk_delete`
- // See: https://gitlab.com/gitlab-org/gitlab/-/issues/378090
- return this.glFeatures?.runnersGroupBulkDelete;
- },
},
watch: {
search: {
@@ -253,7 +248,7 @@ export default {
<template v-else>
<runner-list
:runners="runners.items"
- :checkable="shouldEnableBulkDelete"
+ :checkable="true"
:loading="runnersLoading"
@deleted="onDeleted"
>