Files
gitlab-ce/app/assets/javascripts/notes/components/attachments_warning.vue
2023-08-12 00:10:38 +00:00

19 lines
276 B
Vue

<script>
import { COMMENT_FORM } from '../i18n';
export default {
i18n: COMMENT_FORM.attachmentMsg,
data() {
return {
message: this.$options.i18n,
};
},
};
</script>
<template>
<div class="issuable-note-warning">
{{ message }}
</div>
</template>