gitlab-org--gitlab-foss/app/assets/javascripts/issue_show/components/locked_warning.vue

21 lines
424 B
Vue
Raw Normal View History

<script>
export default {
methods: {
closeForm() {
this.$emit('closeForm');
},
},
};
</script>
<template>
<div class="alert alert-danger">
Someone edited the issue the same time you did. Please check out
<a
href="#"
role="button"
@click.prevent="closeForm">the issue</a>
and make sure your changes will not unintentionally remove theirs.
</div>
</template>