ui changes

This commit is contained in:
Scott E. Graves 2025-03-15 11:33:00 -05:00
parent 343ac025d5
commit c4b4bc9b49

View File

@ -48,7 +48,9 @@ class _MountWidgetState extends State<MountWidget> {
children: [ children: [
nameText, nameText,
SelectableText( SelectableText(
mount.path, mount.path.isEmpty && mount.state == null
? 'detecting...'
: mount.path,
style: TextStyle(color: subTextColor), style: TextStyle(color: subTextColor),
), ),
], ],