Merge pull request #3119 from pangeachat/3118-cant-type-activity-duration

chore: fix can't edit duration on firefox/safari
This commit is contained in:
ggurdin 2025-06-17 14:42:16 -04:00 committed by GitHub
commit 9f6ef0a8ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,