Skip to content

Commit

Permalink
Cover block: Update placeholder minHeight style to support non-px uni…
Browse files Browse the repository at this point in the history
…ts (#35614)
  • Loading branch information
andrewserong authored Oct 14, 2021
1 parent 82e59df commit b6f0bdf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/block-library/src/cover/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function CoverHeightInput( {
const handleOnChange = ( unprocessedValue ) => {
const inputValue =
unprocessedValue !== ''
? parseInt( unprocessedValue, 10 )
? parseFloat( unprocessedValue )
: undefined;

if ( isNaN( inputValue ) && inputValue !== undefined ) {
Expand Down Expand Up @@ -148,7 +148,6 @@ function CoverHeightInput( {
onBlur={ handleOnBlur }
onChange={ handleOnChange }
onUnitChange={ onUnitChange }
step="1"
style={ { maxWidth: 80 } }
unit={ unit }
units={ units }
Expand Down Expand Up @@ -637,7 +636,12 @@ function CoverEdit( {
noticeUI={ noticeUI }
onSelectMedia={ onSelectMedia }
noticeOperations={ noticeOperations }
style={ { minHeight: temporaryMinHeight || minHeight } }
style={ {
minHeight:
temporaryMinHeight ||
minHeightWithUnit ||
undefined,
} }
>
<div className="wp-block-cover__placeholder-background-options">
<ColorPalette
Expand Down

0 comments on commit b6f0bdf

Please sign in to comment.