From 4c82b87b07e3fa983a8cfcbdd3a7198291ddac76 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 1 Mar 2025 15:48:32 -0600 Subject: [PATCH] gui changes --- web/repertory/lib/widgets/mount_widget.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/repertory/lib/widgets/mount_widget.dart b/web/repertory/lib/widgets/mount_widget.dart index 861be47e..98455cc8 100644 --- a/web/repertory/lib/widgets/mount_widget.dart +++ b/web/repertory/lib/widgets/mount_widget.dart @@ -29,7 +29,10 @@ class _MountWidgetState extends State { isThreeLine ? Column( crossAxisAlignment: CrossAxisAlignment.start, - children: [Text(mount.name), Text(mount.path)], + children: [ + Text(formatMountName(mount.type, mount.name)), + Text(mount.path), + ], ) : Text(formatMountName(mount.type, mount.name)), title: Text(initialCaps(mount.type)),