tomusborne / generateblocks

GenerateBlocks is a small collection of lightweight WordPress blocks that can accomplish nearly anything.
https://generateblocks.com
188 stars 18 forks source link

Default iconSize always 1px #1221

Open gabbsmo opened 3 months ago

gabbsmo commented 3 months ago

Description

It seems that GB is ignoring my default for icon size for new blocks.

Steps to reproduce

add_filter( 'generateblocks_defaults', function ( $defaults ) {
    $defaults['headline']['iconSize'] = '';
    $defaults['button']['iconSize'] = '';

    return $defaults;
} );

Expected behavior

Icon size field should be empty on new headlines and buttons.

Actual behavior

It has a value of "1".