From 3c1f94774dcb76322800ef9df5245f28d68a4a6c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 28 Apr 2022 18:35:53 +0300 Subject: [PATCH] Left align entity links in table --- lib/ui/app/link_text.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ui/app/link_text.dart b/lib/ui/app/link_text.dart index 1faafc86d..2a75c8100 100644 --- a/lib/ui/app/link_text.dart +++ b/lib/ui/app/link_text.dart @@ -40,10 +40,10 @@ class _LinkTextRelatedEntityState extends State { child: GestureDetector( child: Text( widget.entity.listDisplayName, - textAlign: TextAlign.center, style: TextStyle( - decoration: - _isHovered ? TextDecoration.underline : TextDecoration.none), + decoration: + _isHovered ? TextDecoration.underline : TextDecoration.none, + ), ), onTap: () { viewEntity(entity: widget.relation);