Skip to content

Commit

Permalink
Update edit.js
Browse files Browse the repository at this point in the history
  • Loading branch information
oakesjosh committed Nov 18, 2024
1 parent d30b781 commit cecbc3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blocks/column/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3699,8 +3699,8 @@ function SectionEdit(props) {
undefined !== shadow[0].opacity ? shadow[0].opacity : 1
)
: undefined,
'-webkit-backdrop-filter': backdropFilterString,
'backdrop-filter': backdropFilterString,
'-webkit-backdrop-filter': backdropFilterString !== undefined ? backdropFilterString : undefined,
'backdrop-filter': backdropFilterString !== undefined ? backdropFilterString : undefined,
}}
{...innerBlocksProps}
></div>
Expand Down

0 comments on commit cecbc3a

Please sign in to comment.