Hi there,
Sorry for the delay.
I quickly checked on our end and saw an issue.
Could you edit the file widget.php in administrator/components/com_hikashop/classes and replace this line:
$widget->widget_access=$formData['widget']['widget_access'];
$widget->widget_params->display='table';
with:
$widget->widget_access=$formData['widget']['widget_access'];
$widget->widget_params = new stdClass();
$widget->widget_params->display='table';
It should be around line 71.
It solved the problem on my side, let me know if it works for you!