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:
@@ -39,8 +39,8 @@ class extends Component {
|
||||
// New City Modal
|
||||
public string $newCityName = '';
|
||||
public ?int $newCityCountryId = null;
|
||||
public float $newCityLatitude = 0;
|
||||
public float $newCityLongitude = 0;
|
||||
public ?float $newCityLatitude = null;
|
||||
public ?float $newCityLongitude = null;
|
||||
|
||||
public function createCity(): void
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user