summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/components/locked_warning.vue
blob: f3c2a31bd5b50f87c8821c61937e4b6da3a79374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<script>
import { __, sprintf } from '~/locale';

export default {
  computed: {
    currentPath() {
      return window.location.pathname;
    },
    alertMessage() {
      return sprintf(
        __(
          'Someone edited the issue at the same time you did. Please check out %{linkStart}the issue%{linkEnd} and make sure your changes will not unintentionally remove theirs.',
        ),
        {
          linkStart: `<a href="${this.currentPath}" target="_blank" rel="nofollow">`,
          linkEnd: `</a>`,
        },
        false,
      );
    },
  },
};
</script>

<template>
  <div
    class="alert alert-danger"
    v-html="alertMessage /* eslint-disable-line vue/no-v-html */"
  ></div>
</template>