From c4b4bc9b4999031f1328eeb6833bad37d29058af Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 15 Mar 2025 11:33:00 -0500 Subject: [PATCH] ui changes --- web/repertory/lib/widgets/mount_widget.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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), ), ],