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/monitoring/components/variables/text_field.vue')
-rw-r--r--app/assets/javascripts/monitoring/components/variables/text_field.vue39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/assets/javascripts/monitoring/components/variables/text_field.vue b/app/assets/javascripts/monitoring/components/variables/text_field.vue
deleted file mode 100644
index a0418806e5f..00000000000
--- a/app/assets/javascripts/monitoring/components/variables/text_field.vue
+++ /dev/null
@@ -1,39 +0,0 @@
-<script>
-import { GlFormGroup, GlFormInput } from '@gitlab/ui';
-
-export default {
- components: {
- GlFormGroup,
- GlFormInput,
- },
- props: {
- name: {
- type: String,
- required: true,
- },
- label: {
- type: String,
- required: true,
- },
- value: {
- type: String,
- required: true,
- },
- },
- methods: {
- onUpdate(event) {
- this.$emit('input', event.target.value);
- },
- },
-};
-</script>
-<template>
- <gl-form-group :label="label">
- <gl-form-input
- :value="value"
- :name="name"
- @keyup.native.enter="onUpdate"
- @blur.native="onUpdate"
- />
- </gl-form-group>
-</template>