Fix updating category number from Realtime update

This commit is contained in:
Ryan Pandya 2023-06-26 14:10:44 -04:00
parent 315a113f16
commit 03382d2cb9

View File

@ -514,7 +514,8 @@ class _HourFormFieldState extends State<HourFormField> {
keyboardType: TextInputType.numberWithOptions( keyboardType: TextInputType.numberWithOptions(
signed: false, signed: false,
), ),
initialValue: catNum, controller: TextEditingController.fromValue(
TextEditingValue(text: catNum)),
); );
}), }),
), ),