diff --git a/app/Http/Controllers/Dashboard/ApiController.php b/app/Http/Controllers/Dashboard/ApiController.php index 7c92b2c8d339..4e59a7a40c17 100644 --- a/app/Http/Controllers/Dashboard/ApiController.php +++ b/app/Http/Controllers/Dashboard/ApiController.php @@ -46,7 +46,8 @@ public function postUpdateComponent(Component $component) $component->group_id, $component->enabled, $component->meta, - false + $component->tags, + true // Silent mode )); } catch (QueryException $e) { throw new BadRequestHttpException(); @@ -78,7 +79,8 @@ public function postUpdateComponentOrder() $component->group_id, $component->enabled, $component->meta, - true + $component->tags, + true // Silent mode )); } catch (QueryException $e) { throw new BadRequestHttpException();