From f31624c6eb03eb7c33578a0a225089cd2e0880f7 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Sun, 6 Apr 2025 21:13:15 +0200 Subject: [PATCH] fix(General): change redis_password property to nullable string --- app/Livewire/Project/Database/Redis/General.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Project/Database/Redis/General.php b/app/Livewire/Project/Database/Redis/General.php index f301d912e..f03f1256d 100644 --- a/app/Livewire/Project/Database/Redis/General.php +++ b/app/Livewire/Project/Database/Redis/General.php @@ -21,7 +21,7 @@ class General extends Component public string $redis_username; - public string $redis_password; + public ?string $redis_password; public string $redis_version;