fix Computer device in the list

This commit is contained in:
Cayo Puigdefabregas 2022-04-18 17:20:07 +02:00
parent 252c7b8d7d
commit 5595d0ddcf
1 changed files with 1 additions and 1 deletions

View File

@ -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):