Left align entity links in table

This commit is contained in:
Hillel Coren 2022-04-28 18:35:53 +03:00
parent cf5108a406
commit 3c1f94774d
1 changed files with 3 additions and 3 deletions

View File

@ -40,10 +40,10 @@ class _LinkTextRelatedEntityState extends State<LinkTextRelatedEntity> {
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);