Skip to content

Commit

Permalink
Issue cachethq#4395 - Fix call to UpdateComponentCommand with right p…
Browse files Browse the repository at this point in the history
…arams numbers, in silent mode
  • Loading branch information
pierrepomes committed Jun 11, 2024
1 parent 3e97a87 commit 4970b7b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/Http/Controllers/Dashboard/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 4970b7b

Please sign in to comment.