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:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2018-06-05 17:34:51 +0300
committerLuke Bennett <lukeeeebennettplus@gmail.com>2018-06-05 17:34:51 +0300
commitd35ad403f50b2d496f0d5938502fb55ef2190f7c (patch)
treef4e4246256b5865c65ac2662bc898be7a52a7bfc /app/assets/javascripts/project_label_subscription.js
parent932b9f8cb2a90884f4f22747dfc86075b082bf4f (diff)
FE review changes
Diffstat (limited to 'app/assets/javascripts/project_label_subscription.js')
-rw-r--r--app/assets/javascripts/project_label_subscription.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/project_label_subscription.js b/app/assets/javascripts/project_label_subscription.js
index 35a76875a7a..9049f87e037 100644
--- a/app/assets/javascripts/project_label_subscription.js
+++ b/app/assets/javascripts/project_label_subscription.js
@@ -63,6 +63,6 @@ export default class ProjectLabelSubscription {
const type = /group/.test(originalTitle) ? 'group' : 'project';
const newTitle = tooltipTitles[type][newStatus];
- $button.tooltip('hide').attr('title', newTitle).tooltip('_fixTitle');
+ $button.attr('title', newTitle).tooltip('_fixTitle');
}
}