From f01643b50fbb85417e54a42152a397339c40b896 Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Tue, 31 Mar 2020 17:11:58 +0200 Subject: [PATCH] Enqueue Wordpress media library assets on form editor page [MAILPOET-2750] --- lib/AdminPages/Pages/FormEditor.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/AdminPages/Pages/FormEditor.php b/lib/AdminPages/Pages/FormEditor.php index a06e2df052..6e825ee1ad 100644 --- a/lib/AdminPages/Pages/FormEditor.php +++ b/lib/AdminPages/Pages/FormEditor.php @@ -96,6 +96,7 @@ class FormEditor { 'sub_menu' => 'mailpoet-forms', 'custom_fields' => $this->customFieldsResponseBuilder->buildBatch($customFields), ]; + $this->wp->wpEnqueueMedia(); $this->pageRenderer->displayPage('form/editor.html', $data); }