Skip to content

Commit

Permalink
Merge branch '4.x' into 6517-markdown-rendered-dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Nov 1, 2023
2 parents 9682fc5 + 0f636e4 commit e254084
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:

# Test
- name: Upgrade Chrome Driver
run: php artisan dusk:chrome-driver $(google-chrome -version | awk '{ print $3 }' | cut -d . -f 1)
run: php artisan dusk:chrome-driver --detect
- name: Start Chrome Driver
run: |
chmod -R 0755 vendor/laravel/dusk/bin/
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/ContactsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ private function contacts(Request $request, bool $active)
}

$tagsCount = Tag::contactsCount();
$contactsWithoutTagsCount = $contacts->doesntHave('tags')->count();
$contactsWithoutTagsCount = (clone $contacts)->doesntHave('tags')->count();

$tags = null;
$url = null;
$count = 1;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"barryvdh/laravel-debugbar": "^3",
"fakerphp/faker": "^1.10",
"khanamiryan/qrcode-detector-decoder": "^2.0",
"laravel/dusk": "^7.0",
"laravel/dusk": "^7.11",
"laravel/legacy-factories": "^1.0",
"laravel/tinker": "^2.6",
"matthiasnoback/live-code-coverage": "^1",
Expand Down
21 changes: 12 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e254084

Please sign in to comment.