ui changes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-15 11:35:15 -05:00
parent c4b4bc9b49
commit 532dd3c417

View File

@ -49,7 +49,9 @@ class _MountWidgetState extends State<MountWidget> {
nameText, nameText,
SelectableText( SelectableText(
mount.path.isEmpty && mount.state == null mount.path.isEmpty && mount.state == null
? 'detecting...' ? 'loading...'
: mount.path.isEmpty
? '<mount location not set>'
: mount.path, : mount.path,
style: TextStyle(color: subTextColor), style: TextStyle(color: subTextColor),
), ),