2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

Add edit button for Company tile

This commit is contained in:
Oliver Walters 2020-04-16 21:04:57 +10:00
parent 7a7fc84ffe
commit e92a05a306

View File

@ -49,6 +49,10 @@ class _CompanyDetailState extends RefreshableState<CompanyDetailWidget> {
image: InvenTreeAPI().getImage(company.image),
width: 48,
),
trailing: IconButton(
icon: FaIcon(FontAwesomeIcons.edit),
onPressed: null,
),
),
));