From 05575cccfb95e33cd567d0ca1c7551338c123efd Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Fri, 4 Apr 2025 22:59:06 +0700 Subject: [PATCH] fix: Crash using when Integer type in Patch Options (#2453) --- lib/ui/widgets/patchesSelectorView/patch_options_fields.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart index 08123160..48644185 100644 --- a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart +++ b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart @@ -85,7 +85,7 @@ class _IntAndStringPatchOptionState extends State { crossAxisAlignment: CrossAxisAlignment.start, children: [ TextFieldForPatchOption( - value: value, + value: value.toString(), patchOption: widget.patchOption, selectedKey: getKey(), onChanged: (value) {