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

19 lines
490 B
Vue
Raw Normal View History

<script>
2018-10-10 06:23:54 +00:00
export default {
computed: {
currentPath() {
return window.location.pathname;
},
2018-10-10 06:23:54 +00:00
},
};
</script>
<template>
<div class="alert alert-danger">
{{ 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="${currentPath}" target="_blank" rel="nofollow">` linkEnd: '</a
>', }) }}
</div>
</template>