From 5595d0ddcff5c02dc95ad79ba3f457fa8ae9348c Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 18 Apr 2022 17:20:07 +0200 Subject: [PATCH] fix Computer device in the list --- ereuse_devicehub/inventory/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ereuse_devicehub/inventory/forms.py b/ereuse_devicehub/inventory/forms.py index 517f9b3b..e594e50d 100644 --- a/ereuse_devicehub/inventory/forms.py +++ b/ereuse_devicehub/inventory/forms.py @@ -100,7 +100,7 @@ class FilterForm(FlaskForm): if self.device: return [self.device] - return ['Desktop', 'Laptop', 'Server'] + return ['Desktop', 'Laptop', 'Server', 'Computer'] class LotDeviceForm(FlaskForm):