2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-13 02:35:27 +00:00

Close expander items if there are no children!

This commit is contained in:
Oliver Walters
2020-04-05 23:16:09 +10:00
parent b4c540433f
commit 5652926a38
2 changed files with 4 additions and 4 deletions

View File

@ -176,7 +176,7 @@ class _LocationDisplayState extends State<LocationDisplayWidget> {
);
},
body: SublocationList(_sublocations),
isExpanded: _locationListExpanded,
isExpanded: _locationListExpanded && _sublocations.length > 0,
),
ExpansionPanel(
headerBuilder: (BuildContext context, bool isExpanded) {
@ -192,7 +192,7 @@ class _LocationDisplayState extends State<LocationDisplayWidget> {
);
},
body: StockList(_items),
isExpanded: _stockListExpanded,
isExpanded: _stockListExpanded && _items.length > 0,
)
]
),