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:
@@ -14,8 +14,8 @@ class extends Component {
|
||||
public $country = 'de';
|
||||
public string $name = '';
|
||||
public ?int $country_id = null;
|
||||
public float $latitude = 0;
|
||||
public float $longitude = 0;
|
||||
public ?float $latitude = null;
|
||||
public ?float $longitude = null;
|
||||
public ?int $population = null;
|
||||
public ?string $population_date = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user