diff --git a/web/repertory/lib/screens/add_mount_screen.dart b/web/repertory/lib/screens/add_mount_screen.dart index 1075e8a4..6f00f1f5 100644 --- a/web/repertory/lib/screens/add_mount_screen.dart +++ b/web/repertory/lib/screens/add_mount_screen.dart @@ -66,10 +66,9 @@ class _AddMountScreenState extends State { const Text('Provider Type'), const SizedBox(width: constants.padding), DropdownButton( + autofocus: true, value: _mountType, - onChanged: (mountType) { - _handleChange(mountType ?? ''); - }, + onChanged: (mountType) => _handleChange(mountType ?? ''), items: constants.providerTypeList .map>((item) {