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-06 15:08:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-06 15:08:36 +0300
commitc1f785fe21ee785618ef3bf0407fee166b6e0ecd (patch)
tree4807aa3c9dfa10ac1e52554057e407b1af310888 /app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue
parent5d3eac1cf8820b5f95bf2085ccc246ea78f4b4d2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue')
-rw-r--r--app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue30
1 files changed, 0 insertions, 30 deletions
diff --git a/app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue b/app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue
deleted file mode 100644
index 4e672c1d121..00000000000
--- a/app/assets/javascripts/logs/components/tokens/token_with_loading_state.vue
+++ /dev/null
@@ -1,30 +0,0 @@
-<script>
-import { GlFilteredSearchToken, GlLoadingIcon } from '@gitlab/ui';
-
-export default {
- components: {
- GlFilteredSearchToken,
- GlLoadingIcon,
- },
- inheritAttrs: false,
- props: {
- config: {
- type: Object,
- required: true,
- },
- },
-};
-</script>
-
-<template>
- <gl-filtered-search-token :config="config" v-bind="{ ...$attrs }" v-on="$listeners">
- <template #suggestions>
- <div class="m-1">
- <gl-loading-icon v-if="config.loading" size="sm" />
- <div v-else class="py-1 px-2 text-muted">
- {{ config.noOptionsText }}
- </div>
- </div>
- </template>
- </gl-filtered-search-token>
-</template>