Skip to content

Commit

Permalink
null place edit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
miakh committed Nov 16, 2024
1 parent 74b61d5 commit b1fe72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/EventEditPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class _EventEditPageState extends State<EventEditPage> {
..maxParticipants = maxParticipants == 0 ? null : maxParticipants
..splitForMenWomen = splitForMenWomen!
..isGroupEvent = isGroupEvent!
..place = places!.firstWhereOrNull((p)=>p.id! == placeId!)
..place = places!.firstWhereOrNull((p)=>p.id == placeId)
..type = type
..description = content
..parentEventIds = showInsideEvent != null && showInsideEvent!.isNotEmpty
Expand Down

0 comments on commit b1fe72c

Please # to comment.