Skip to content

Commit

Permalink
URLPopover: Fix a problem with the layout of link settings
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed Feb 10, 2024
1 parent 5939c41 commit 948720a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/block-editor/src/components/url-popover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ const URLPopover = forwardRef(
/>
) }
</div>
{ showSettings && (
<div className="block-editor-url-popover__row block-editor-url-popover__settings">
{ renderSettings() }
</div>
) }
</div>
{ showSettings && (
<div className="block-editor-url-popover__settings">
{ renderSettings() }
</div>
) }
{ additionalControls && ! showSettings && (
<div className="block-editor-url-popover__additional-controls">
{ additionalControls }
Expand Down

0 comments on commit 948720a

Please sign in to comment.