From d47dd3255e88972d655f74f4f4b1fdb22ca770aa Mon Sep 17 00:00:00 2001 From: ggurdin Date: Tue, 17 Jun 2025 14:41:44 -0400 Subject: [PATCH] chore: fix can't edit duration on firefox/safari --- .../activities/activity_duration_popup.dart | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/lib/pangea/activities/activity_duration_popup.dart b/lib/pangea/activities/activity_duration_popup.dart index 4ce8a40a6..c6cbb56ab 100644 --- a/lib/pangea/activities/activity_duration_popup.dart +++ b/lib/pangea/activities/activity_duration_popup.dart @@ -141,22 +141,24 @@ class ActivityDurationPopupState extends State { child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Row( - spacing: 12.0, - children: [ - _DatePickerInput( - type: "d", - controller: _daysController, - ), - _DatePickerInput( - type: "h", - controller: _hoursController, - ), - _DatePickerInput( - type: "m", - controller: _minutesController, - ), - ], + SelectionArea( + child: Row( + spacing: 12.0, + children: [ + _DatePickerInput( + type: "d", + controller: _daysController, + ), + _DatePickerInput( + type: "h", + controller: _hoursController, + ), + _DatePickerInput( + type: "m", + controller: _minutesController, + ), + ], + ), ), const Icon( Icons.alarm,