mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-23 16:06:43 -06:00
Fix #13791 by disabling striping on find and replace fields of BulkRenameForm
This commit is contained in:
parent
320efa7934
commit
85c5508a43
@ -40,8 +40,11 @@ class BulkRenameForm(BootstrapMixin, forms.Form):
|
||||
"""
|
||||
An extendable form to be used for renaming objects in bulk.
|
||||
"""
|
||||
find = forms.CharField()
|
||||
find = forms.CharField(
|
||||
strip=False
|
||||
)
|
||||
replace = forms.CharField(
|
||||
strip=False,
|
||||
required=False
|
||||
)
|
||||
use_regex = forms.BooleanField(
|
||||
|
Loading…
Reference in New Issue
Block a user