Skip to content

Commit 422c643

Browse files
fix: wizard setup page deps load
The chosen.js was required as deps for wizard but the condition did not load it for Setup Wizard page.
1 parent 3b2a953 commit 422c643

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

includes/admin/feedzy-rss-feeds-import.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ public function enqueue_styles() {
129129
'feedzy_categories' === $screen->post_type ||
130130
'feedzy_page_feedzy-integration' === $screen->id ||
131131
'feedzy_page_feedzy-settings' === $screen->id ||
132-
'feedzy_page_feedzy-support' === $screen->id
132+
'feedzy_page_feedzy-support' === $screen->id ||
133+
'feedzy_page_feedzy-setup-wizard' === $screen->id
133134
) {
134135
wp_enqueue_style( $this->plugin_name, FEEDZY_ABSURL . 'css/feedzy-rss-feed-import.css', array(), $this->version, 'all' );
135136
wp_register_style( $this->plugin_name . '_chosen', FEEDZY_ABSURL . 'includes/views/css/chosen.css', array(), $this->version, 'all' );

0 commit comments

Comments
 (0)