mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-04-17 08:00:34 +00:00
Fix default location for "cascade" filter (#793)
This commit is contained in:
parent
0d68762252
commit
a87a7d6228
3 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.22.5 - March 2026
|
||||||
|
---
|
||||||
|
|
||||||
|
- Fix default value for "cascade" filter in PartCategory list view
|
||||||
|
- Fix default value for "cascade" filter in StockLocation list view
|
||||||
|
|
||||||
## 0.22.4 - March 2026
|
## 0.22.4 - March 2026
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ class _PaginatedPartCategoryListState
|
||||||
@override
|
@override
|
||||||
Map<String, Map<String, dynamic>> get filterOptions => {
|
Map<String, Map<String, dynamic>> get filterOptions => {
|
||||||
"cascade": {
|
"cascade": {
|
||||||
"default": false,
|
"default": true,
|
||||||
"label": L10().includeSubcategories,
|
"label": L10().includeSubcategories,
|
||||||
"help_text": L10().includeSubcategoriesDetail,
|
"help_text": L10().includeSubcategoriesDetail,
|
||||||
"tristate": false,
|
"tristate": false,
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@ class _PaginatedStockLocationListState
|
||||||
"label": L10().includeSublocations,
|
"label": L10().includeSublocations,
|
||||||
"help_text": L10().includeSublocationsDetail,
|
"help_text": L10().includeSublocationsDetail,
|
||||||
"tristate": false,
|
"tristate": false,
|
||||||
|
"default": true,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue