summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/components/locked_warning.vue
blob: b9960b4e5f25c966e622ed71db6c432a0bf08650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>