diff --git a/web/repertory/lib/widgets/mount_widget.dart b/web/repertory/lib/widgets/mount_widget.dart index 2703f035..58b706be 100644 --- a/web/repertory/lib/widgets/mount_widget.dart +++ b/web/repertory/lib/widgets/mount_widget.dart @@ -48,7 +48,9 @@ class _MountWidgetState extends State { children: [ nameText, SelectableText( - mount.path, + mount.path.isEmpty && mount.state == null + ? 'detecting...' + : mount.path, style: TextStyle(color: subTextColor), ), ],