We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a4a7a commit 2b76b8aCopy full SHA for 2b76b8a
app/code/Magento/PageBuilder/Plugin/Model/Eav/Attribute/PresentationPlugin.php
@@ -59,7 +59,7 @@ public function afterConvertPresentationDataToInputType(
59
array $result
60
) {
61
$result['is_pagebuilder_enabled'] = 0;
62
- if ($result['frontend_input'] === 'pagebuilder') {
+ if (isset($result['frontend_input']) && $result['frontend_input'] === 'pagebuilder') {
63
$result['is_wysiwyg_enabled'] = 1;
64
$result['is_pagebuilder_enabled'] = 1;
65
$result['frontend_input'] = 'textarea';
0 commit comments