Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2019-05-20 18:05:12 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2019-05-20 20:29:32 +0300
commit094e877efd8de154c76993b32e84640a541e21d0 (patch)
tree232b04803ed320d92e5b52fc72d507bf2b2a72fc /app/assets/javascripts/batch_comments
parent0c5b3d08dedccb5808c6df6560b3e277035691db (diff)
Change resolve button text to mark comment as resolved
Diffstat (limited to 'app/assets/javascripts/batch_comments')
-rw-r--r--app/assets/javascripts/batch_comments/mixins/resolved_status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/batch_comments/mixins/resolved_status.js b/app/assets/javascripts/batch_comments/mixins/resolved_status.js
index 20c31d9f8a4..96ee9f62ba4 100644
--- a/app/assets/javascripts/batch_comments/mixins/resolved_status.js
+++ b/app/assets/javascripts/batch_comments/mixins/resolved_status.js
@@ -1,7 +1,7 @@
export default {
computed: {
resolveButtonTitle() {
- let title = 'Mark as resolved';
+ let title = 'Mark comment as resolved';
if (this.resolvedBy) {
title = `Resolved by ${this.resolvedBy.name}`;