Fixed item save
This commit is contained in:
parent
e182997308
commit
71ea94eea3
|
@ -188,7 +188,8 @@ function createVisualConsole(
|
|||
var id = e.item.props.id;
|
||||
var data = {
|
||||
width: e.newSize.width,
|
||||
height: e.newSize.height
|
||||
height: e.newSize.height,
|
||||
type: e.item.props.type
|
||||
};
|
||||
var taskId = "visual-console-item-resize-" + id;
|
||||
|
||||
|
|
|
@ -57,7 +57,9 @@ if ($getVisualConsole === true) {
|
|||
$item_data['id_layout'] = $visualConsoleId;
|
||||
|
||||
$item = $class::fromDB($item_data);
|
||||
$item->save($data);
|
||||
$result = $item->save($data);
|
||||
|
||||
echo json_encode($result);
|
||||
}
|
||||
|
||||
exit;
|
||||
|
|
Loading…
Reference in New Issue