Skip to content

Commit a391fa3

Browse files
committed
Fix formatting
1 parent 207cf07 commit a391fa3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/fields/form_builder_searchable_dropdown.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ class FormBuilderSearchableDropdown<T> extends FormBuilderField<T> {
165165
return InputDecorator(
166166
decoration: state.decoration(),
167167
child: dropdown_search.DropdownSearch<T>(
168-
key: ValueKey(state.value), //Hack to rebuild when didChange is called
168+
//Hack to rebuild when didChange is called
169+
key: ValueKey(state.value),
169170
items: items,
170171
maxHeight: 300,
171172
onFind: onFind,

0 commit comments

Comments
 (0)