Skip to content

Commit

Permalink
🐛 [#4012] Fix content component link popup in form builder
Browse files Browse the repository at this point in the history
because the WebformBuilder root was not unmounted after closing the modal, this did not work previously
  • Loading branch information
stevenbal committed Jun 10, 2024
1 parent 69b95dc commit 0298990
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ class WebformBuilder extends WebformBuilderFormio {
// Clean up.
this.removeEventListener(this.dialog, 'close', dialogClose);
this.dialog = null;
root.unmount();
};
this.addEventListener(this.dialog, 'close', dialogClose);

Expand Down

0 comments on commit 0298990

Please sign in to comment.