mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #11694 - Remove obsolete SmallTextarea widget
This commit is contained in:
committed by
jeremystretch
parent
c8faca01f1
commit
8d68b6a2e6
@@ -5,7 +5,7 @@ from core.choices import DataSourceTypeChoices
|
||||
from core.models import *
|
||||
from netbox.forms import NetBoxModelBulkEditForm
|
||||
from utilities.forms import (
|
||||
add_blank_choice, BulkEditNullBooleanSelect, CommentField, SmallTextarea, StaticSelect,
|
||||
add_blank_choice, BulkEditNullBooleanSelect, CommentField, StaticSelect,
|
||||
)
|
||||
|
||||
__all__ = (
|
||||
@@ -30,7 +30,7 @@ class DataSourceBulkEditForm(NetBoxModelBulkEditForm):
|
||||
required=False
|
||||
)
|
||||
comments = CommentField(
|
||||
widget=SmallTextarea,
|
||||
widget=forms.Textarea,
|
||||
label=_('Comments')
|
||||
)
|
||||
parameters = forms.JSONField(
|
||||
|
Reference in New Issue
Block a user