chore: fix can't edit duration on firefox/safari

This commit is contained in:
ggurdin 2025-06-17 14:41:44 -04:00
parent 6e1915959c
commit d47dd3255e
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -141,22 +141,24 @@ class ActivityDurationPopupState extends State<ActivityDurationPopup> {
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,