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
This commit is contained in:
Annabel Dunstone Gray 2017-05-23 14:42:11 +00:00
commit 81629b1c86
1 changed files with 3 additions and 3 deletions

View File

@ -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() {