2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Filter part table by 'is_component' status

This commit is contained in:
Oliver Walters
2020-04-11 23:02:18 +10:00
parent 0f90e8f522
commit f5a8b110b5
3 changed files with 11 additions and 0 deletions

View File

@ -85,6 +85,10 @@ function getAvailableTableFilters(tableKey) {
type: 'bool',
title: '{% trans "Assembly" %}',
},
component: {
type: 'bool',
title: '{% trans "Component" %}',
},
};
}