You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating widgets I get the below error in Magento admin when trying to view the created widget:
Exception #0 (InvalidArgumentException): Unable to unserialize value. Error: Syntax error
This seems to be caused by the way key/values are created. Using the code from the sample widget.yaml it creates the below in the database field 'widget_parameters' :
a:1:{s:8:"block_id";s:1:"1";}
If I manually change this to below the error goes away.
{"block_id":"1"}
Is this a known issue?
The text was updated successfully, but these errors were encountered:
When creating widgets I get the below error in Magento admin when trying to view the created widget:
Exception #0 (InvalidArgumentException): Unable to unserialize value. Error: Syntax error
This seems to be caused by the way key/values are created. Using the code from the sample widget.yaml it creates the below in the database field 'widget_parameters' :
a:1:{s:8:"block_id";s:1:"1";}
If I manually change this to below the error goes away.
{"block_id":"1"}
Is this a known issue?
The text was updated successfully, but these errors were encountered: