Compare commits
2 Commits
343ac025d5
...
532dd3c417
Author | SHA1 | Date | |
---|---|---|---|
532dd3c417 | |||
c4b4bc9b49 |
@ -48,7 +48,11 @@ class _MountWidgetState extends State<MountWidget> {
|
|||||||
children: [
|
children: [
|
||||||
nameText,
|
nameText,
|
||||||
SelectableText(
|
SelectableText(
|
||||||
mount.path,
|
mount.path.isEmpty && mount.state == null
|
||||||
|
? 'loading...'
|
||||||
|
: mount.path.isEmpty
|
||||||
|
? '<mount location not set>'
|
||||||
|
: mount.path,
|
||||||
style: TextStyle(color: subTextColor),
|
style: TextStyle(color: subTextColor),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user