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:
@ -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,
|
||||
)
|
||||
]
|
||||
),
|
||||
|
Reference in New Issue
Block a user