Skip to content

Commit

Permalink
Block editor multi-select dropdown style issue - FIXED
Browse files Browse the repository at this point in the history
  • Loading branch information
kprajapatii committed Jan 28, 2022
1 parent fe12e01 commit 2eeb3d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.0.29 =
* Block editor multi-select dropdown style issue - FIXED

= 1.0.28 =
* Some extra escaping block parameters - CHANGED

Expand Down
2 changes: 1 addition & 1 deletion wp-super-duper.php
Original file line number Diff line number Diff line change
Expand Up @@ -2321,7 +2321,7 @@ public function build_block_arguments( $key, $args ) {
}
}
if ( isset( $args['multiple'] ) && $args['multiple'] ) { //@todo multiselect does not work at the moment: https://github.com/WordPress/gutenberg/issues/5550
$extra .= ' multiple: true, ';
$extra .= ' multiple:true,style:{height:"auto",paddingRight:"8px"}, ';
}
} elseif ( $args['type'] == 'alignment' ) {
$type = 'AlignmentToolbar'; // @todo this does not seem to work but cant find a example
Expand Down

0 comments on commit 2eeb3d3

Please sign in to comment.