Przeglądaj źródła

#10307 fix choices for poe type

Arthur 3 lat temu
rodzic
commit
59a2a43473
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      netbox/dcim/choices.py

+ 1 - 1
netbox/dcim/choices.py

@@ -1096,7 +1096,7 @@ class InterfacePoETypeChoices(ChoiceSet):
                 (PASSIVE_24V_2PAIR, 'Passive 24V (2-pair)'),
                 (PASSIVE_24V_4PAIR, 'Passive 24V (4-pair)'),
                 (PASSIVE_48V_2PAIR, 'Passive 48V (2-pair)'),
-                (PASSIVE_48V_2PAIR, 'Passive 48V (4-pair)'),
+                (PASSIVE_48V_4PAIR, 'Passive 48V (4-pair)'),
             )
         ),
     )