Left align entity links in table
This commit is contained in:
parent
cf5108a406
commit
3c1f94774d
|
|
@ -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),
|
||||
_isHovered ? TextDecoration.underline : TextDecoration.none,
|
||||
),
|
||||
),
|
||||
onTap: () {
|
||||
viewEntity(entity: widget.relation);
|
||||
|
|
|
|||
Loading…
Reference in New Issue