Compare commits

...

2 Commits

Author SHA1 Message Date
532dd3c417 ui changes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
2025-03-15 11:35:15 -05:00
c4b4bc9b49 ui changes 2025-03-15 11:33:00 -05:00

View File

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