mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-03 16:24:55 +00:00
✨ **Tests & Nullable Fixes:** Added tests to ensure no crashes when nullable Livewire properties are explicitly set to null. Updated several Livewire components to handle nullable properties gracefully. 🚀
This commit is contained in:
@@ -20,14 +20,14 @@ class extends Component {
|
||||
#[Locked]
|
||||
public $country = 'de';
|
||||
|
||||
public string $startDate = '';
|
||||
public string $startTime = '';
|
||||
public ?string $startDate = null;
|
||||
public ?string $startTime = null;
|
||||
|
||||
// Explicitly track timezone for reactivity
|
||||
public string $userTimezone = '';
|
||||
|
||||
public bool $seriesMode = false;
|
||||
public string $endDate = '';
|
||||
public ?string $endDate = null;
|
||||
|
||||
public ?RecurrenceType $recurrenceType = null;
|
||||
public ?string $recurrenceDayOfWeek = null;
|
||||
|
||||
Reference in New Issue
Block a user