Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Never use SPA mode for oauth links + spacing #85

Merged
merged 4 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0.9",
"filament/filament": "^3.2.44",
"illuminate/contracts": "^10.0",
"laravel/socialite": "^5.5",
"spatie/laravel-package-tools": "^1.9.2"
Expand Down
3 changes: 2 additions & 1 deletion resources/views/components/buttons.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div>
<div class="flex flex-col gap-y-6">
@if ($messageBag->isNotEmpty())
@foreach($messageBag->all() as $value)
<p class="fi-fo-field-wrp-error-message text-danger-600 dark:text-danger-400">{{ __($value) }}</p>
Expand All @@ -23,6 +23,7 @@
:icon="$provider['icon'] ?? null"
tag="a"
:href="route($socialiteRoute, $key)"
:spa-mode="false"
>
{{ $provider['label'] }}
</x-filament::button>
Expand Down