summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-05-23 14:42:11 +0000
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-05-23 14:42:11 +0000
commit81629b1c8614259cac71afb49dadf76a1f8cc521 (patch)
tree85119a45600f1c48ef90f3f91f612220853505b3
parente21d075c279b22d406933ad12cb1ba327f5b1901 (diff)
parent2ae33f84df8e19b5777f64eee7c9bba003fe0d08 (diff)
downloadgitlab-ce-81629b1c8614259cac71afb49dadf76a1f8cc521.tar.gz
Merge branch '32738-fix-project-title-ellipsis-doing-nothing' into 'master'
Fix group/project name ellipsis button doing nothing Closes #32738 See merge request !11623
-rw-r--r--app/assets/javascripts/group_name.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/group_name.js b/app/assets/javascripts/group_name.js
index 62675d7e67e..462d792b8d5 100644
--- a/app/assets/javascripts/group_name.js
+++ b/app/assets/javascripts/group_name.js
@@ -44,18 +44,18 @@ export default class GroupName {
showToggle() {
this.title.classList.add('wrap');
this.toggle.classList.remove('hidden');
- if (this.isHidden) this.groupTitle.classList.add('is-hidden');
+ if (this.isHidden) this.groupTitle.classList.add('hidden');
}
hideToggle() {
this.title.classList.remove('wrap');
this.toggle.classList.add('hidden');
- if (this.isHidden) this.groupTitle.classList.remove('is-hidden');
+ if (this.isHidden) this.groupTitle.classList.remove('hidden');
}
toggleGroups() {
this.isHidden = !this.isHidden;
- this.groupTitle.classList.toggle('is-hidden');
+ this.groupTitle.classList.toggle('hidden');
}
render() {