1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

11620 fix interface poe type filter

This commit is contained in:
Arthur
2023-01-31 09:56:09 -08:00
committed by Jeremy Stretch
parent 46ede62f3f
commit 10e27cfa00

View File

@@ -1170,7 +1170,7 @@ class InterfaceFilterForm(PathEndpointFilterForm, DeviceComponentFilterForm):
label='PoE mode'
)
poe_type = MultipleChoiceField(
choices=InterfacePoEModeChoices,
choices=InterfacePoETypeChoices,
required=False,
label='PoE type'
)