From 1d2696faf36db104be59c1d9801a29cb01b1c0ad Mon Sep 17 00:00:00 2001 From: Kristaps Berzinch Date: Wed, 10 Jul 2024 19:47:56 -0400 Subject: [PATCH] Don't show trashed users on OAuth client edit --- app/Nova/OAuth2Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Nova/OAuth2Client.php b/app/Nova/OAuth2Client.php index 200b7640a..dec9f6b4a 100644 --- a/app/Nova/OAuth2Client.php +++ b/app/Nova/OAuth2Client.php @@ -91,6 +91,7 @@ public function fields(Request $request): array BelongsTo::make('User') ->searchable() + ->withoutTrashed() ->help( 'This should be null for the personal access client, and otherwise populated with the user ' .'responsible for this client.'