Fix #13791 by disabling striping on find and replace fields of BulkRenameForm

This commit is contained in:
Per von Zweigbergk 2023-09-17 22:57:21 +02:00
parent 320efa7934
commit 85c5508a43

View File

@ -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(