mirror of
https://github.com/inventree/inventree-app.git
synced 2025-11-04 23:35:48 +00:00
Tweaks (#707)
* Remove debug msg * Only request test templates for testable parts * Format
This commit is contained in:
@@ -190,11 +190,13 @@ class _PartDisplayState extends RefreshableState<PartDetailWidget> {
|
||||
}
|
||||
|
||||
// Request part test templates
|
||||
part.getTestTemplates().then((value) {
|
||||
if (mounted) {
|
||||
setState(() {});
|
||||
}
|
||||
});
|
||||
if (part.isTestable) {
|
||||
part.getTestTemplates().then((value) {
|
||||
if (mounted) {
|
||||
setState(() {});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Request the number of attachments
|
||||
InvenTreePartAttachment().countAttachments(part.pk).then((int value) {
|
||||
|
||||
Reference in New Issue
Block a user