Browse Source

fixes for saving non config items

pull/21/head
KodeStar 7 years ago
parent
commit
fff44f4681
  1. 22
      app/Http/Controllers/ItemController.php
  2. 3
      app/Item.php
  3. 2
      public/js/app.js
  4. 2
      resources/assets/js/app.js

22
app/Http/Controllers/ItemController.php

@ -139,12 +139,11 @@ class ItemController extends Controller
]);
}
$config = json_encode($request->input('config'));
if($config) {
$request->merge([
'description' => $config
]);
}
$config = $request->input('config');
$config = (!empty($config)) ? json_encode($config) : null;
$request->merge([
'description' => $config
]);
//die(print_r($request->input('config')));
@ -202,12 +201,11 @@ class ItemController extends Controller
]);
}
$config = json_encode($request->input('config'));
if($config) {
$request->merge([
'description' => $config
]);
}
$config = $request->input('config');
$config = (!empty($config)) ? json_encode($config) : null;
$request->merge([
'description' => $config
]);
Item::find($id)->update($request->all());

3
app/Item.php

@ -61,8 +61,9 @@ class Item extends Model
$class = $output->type;
$sap = new $class();
$view = $sap->configDetails();
$output->view = $view;
}
$output->view = $view;
}
return (object)$output;
}

2
public/js/app.js

@ -23,7 +23,7 @@ $.when( $.ready ).then(function() {
var container = $(this);
var max_timer = 30000;
var timer = 1000;
(function worker() {
(function worker() {
$.ajax({
url: '/get_stats/'+id,
success: function(data) {

2
resources/assets/js/app.js

@ -14,7 +14,7 @@ $.when( $.ready ).then(function() {
var container = $(this);
var max_timer = 30000;
var timer = 1000;
(function worker() {
(function worker() {
$.ajax({
url: '/get_stats/'+id,
success: function(data) {

Loading…
Cancel
Save