瀏覽代碼

Add blank choice to ColorSelect widget

Jeremy Stretch 7 年之前
父節點
當前提交
5e7fccb64e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      netbox/utilities/forms.py

+ 1 - 1
netbox/utilities/forms.py

@@ -209,7 +209,7 @@ class ColorSelect(forms.Select):
     option_template_name = 'widgets/colorselect_option.html'
 
     def __init__(self, *args, **kwargs):
-        kwargs['choices'] = COLOR_CHOICES
+        kwargs['choices'] = add_blank_choice(COLOR_CHOICES)
         super(ColorSelect, self).__init__(*args, **kwargs)