Skip to content

Commit

Permalink
Merge pull request #4398 from ppomes/2.4
Browse files Browse the repository at this point in the history
Issue #4395 - No mail on component change on dashbord
  • Loading branch information
jbrooksuk committed Jun 13, 2024
2 parents 9864c3d + 4970b7b commit 731a843
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 731a843

Please sign in to comment.