Skip to content

Commit

Permalink
Fix visibility of cms permissions field
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Mooyman committed Sep 4, 2017
1 parent 901e688 commit e7957c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/src/legacy/LeftAndMain.EditForm.js
Expand Up @@ -482,7 +482,7 @@ $.entwine('ss', function($){
},
showList: function (instant) {
const holder = this.closest('.field');
const list = holder.next().filter('.listbox, .treedropdownfield');
const list = holder.next().filter('.listbox, .treedropdown, .treemultiselect');
holder.addClass('field--merge-below');
if (instant) {
list.show().css('overflow', 'visible');
Expand All @@ -495,7 +495,7 @@ $.entwine('ss', function($){
},
hideList: function (instant) {
const holder = this.closest('.field');
const list = holder.next().filter('.listbox, .treedropdownfield');
const list = holder.next().filter('.listbox, .treedropdown, .treemultiselect');
list.css('overflow', 'hidden');
if (instant) {
list.hide().css('display', 'none');
Expand Down

0 comments on commit e7957c6

Please sign in to comment.