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: GestureDetector(
|
||||||
child: Text(
|
child: Text(
|
||||||
widget.entity.listDisplayName,
|
widget.entity.listDisplayName,
|
||||||
textAlign: TextAlign.center,
|
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
decoration:
|
decoration:
|
||||||
_isHovered ? TextDecoration.underline : TextDecoration.none),
|
_isHovered ? TextDecoration.underline : TextDecoration.none,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
viewEntity(entity: widget.relation);
|
viewEntity(entity: widget.relation);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue