debian-mirror-gitlab/app/assets/javascripts/releases/components/tag_field_existing.vue
2021-04-29 21:17:54 +05:30

40 lines
1 KiB
Vue

<script>
import { GlFormGroup, GlFormInput } from '@gitlab/ui';
import { uniqueId } from 'lodash';
import { mapState } from 'vuex';
import FormFieldContainer from './form_field_container.vue';
export default {
name: 'TagFieldExisting',
components: { GlFormGroup, GlFormInput, FormFieldContainer },
computed: {
...mapState('editNew', ['release']),
inputId() {
return uniqueId('tag-name-input-');
},
helpId() {
return uniqueId('tag-name-help-');
},
},
};
</script>
<template>
<gl-form-group :label="__('Tag name')" :label-for="inputId">
<form-field-container>
<gl-form-input
:id="inputId"
:value="release.tagName"
type="text"
class="form-control"
:aria-describedby="helpId"
disabled
/>
</form-field-container>
<template #description>
<div :id="helpId" data-testid="tag-name-help">
{{ __("The tag name can't be changed for an existing release.") }}
</div>
</template>
</gl-form-group>
</template>