Skip to content

Commit 2b76b8a

Browse files
committed
MAGETWO-90277: Pagebuilder - Cannot Save Short Description Product Attribute Set To Pagebuilder
1 parent 02a4a7a commit 2b76b8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/PageBuilder/Plugin/Model/Eav/Attribute/PresentationPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function afterConvertPresentationDataToInputType(
5959
array $result
6060
) {
6161
$result['is_pagebuilder_enabled'] = 0;
62-
if ($result['frontend_input'] === 'pagebuilder') {
62+
if (isset($result['frontend_input']) && $result['frontend_input'] === 'pagebuilder') {
6363
$result['is_wysiwyg_enabled'] = 1;
6464
$result['is_pagebuilder_enabled'] = 1;
6565
$result['frontend_input'] = 'textarea';

0 commit comments

Comments
 (0)