Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix: Remove link action of Link UI for draft pages created from Nav b…
…lock does not correctly remove link.
  • Loading branch information
jorgefilipecosta committed Jul 7, 2023
commit 2803307404b88554be87d37786b49b86502d60aa
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,10 @@ function LinkControl( {
onEditClick={ () => setIsEditingLink( true ) }
hasRichPreviews={ hasRichPreviews }
hasUnlinkControl={ shownUnlinkControl }
onRemove={ onRemove }
onRemove={ () => {
onRemove();
setIsEditingLink( true );
} }
/>
) }

Expand Down