diff --git a/web/repertory/lib/screens/add_mount_screen.dart b/web/repertory/lib/screens/add_mount_screen.dart index b9d19980..d08c9225 100644 --- a/web/repertory/lib/screens/add_mount_screen.dart +++ b/web/repertory/lib/screens/add_mount_screen.dart @@ -197,11 +197,14 @@ class _AddMountScreenState extends State { } setState(() { + final changed = _mountType != mountType; _mountType = mountType; _mountNameController.text = (mountType == 'Sia' && _mountNameController.text.isEmpty) ? 'default' - : ''; + : changed + ? '' + : _mountNameController.text; _mount = (_mountNameController.text.isEmpty)