Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feat/blocks-page-r…
Browse files Browse the repository at this point in the history
…edesign
  • Loading branch information
alexbarnsley committed Sep 4, 2023
2 parents e46fd41 + b33d04a commit 394da62
Show file tree
Hide file tree
Showing 40 changed files with 397 additions and 420 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ SCOUT_RUN_JOBS=false
ARKSCAN_PRODUCTIVITY_DANGER=97
ARKSCAN_PRODUCTIVITY_WARNING=99.8
ARKSCAN_PAGINATION_PER_PAGE=25

MIX_NOTIFICATIONS_DISABLED=false
8 changes: 4 additions & 4 deletions app/Http/Livewire/Concerns/HasTableFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ public function mountHasTableFilter(): void
{
foreach ($this->filter as $key => $filter) {
if (in_array($filter, ['1', 'true', true], true)) {
$filter = true;
$this->filter[$key] = true;
} elseif (in_array($filter, ['0', 'false', false], true)) {
$filter = false;
$this->filter[$key] = false;
}

$this->syncInput('filter.'.$key, $filter);
}

$this->selectAllFilters = $this->getIsAllSelectedProperty();
}

public function getIsAllSelectedProperty(): bool
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"fruitcake/laravel-cors": "^2.0",
"http-interop/http-factory-guzzle": "^1.2",
"huddledigital/zendesk-laravel": "^3.8",
"laravel/framework": "^9.20",
"laravel/framework": "^9.21",
"laravel/horizon": "^5.19",
"laravel/scout": "^10.2",
"laravel/tinker": "^2.8",
Expand Down
Loading

0 comments on commit 394da62

Please sign in to comment.