From 274c575f851ad5fef09c70eb68b325fb4179b331 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 15 Oct 2025 13:31:32 +0200 Subject: [PATCH] Should be single string field --- changedetectionio/processors/restock_diff/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/processors/restock_diff/forms.py b/changedetectionio/processors/restock_diff/forms.py index b44adff45..fe6851e38 100644 --- a/changedetectionio/processors/restock_diff/forms.py +++ b/changedetectionio/processors/restock_diff/forms.py @@ -1,7 +1,7 @@ from wtforms import ( BooleanField, validators, - FloatField + FloatField, StringField ) from wtforms.fields.choices import RadioField from wtforms.fields.form import FormField @@ -27,7 +27,7 @@ class RestockSettingsForm(Form): validators.NumberRange(min=0, max=100, message="Should be between 0 and 100"), ], render_kw={"placeholder": "0%", "size": "5"}) - price_change_custom_include_filters = StringListField('Override automatic price detection with this selector', [ValidateCSSJSONXPATHInput()], default='') + price_change_custom_include_filters = StringField('Override automatic price detection with this selector', [ValidateCSSJSONXPATHInput()], default='', render_kw={"style": "width: 100%;"}) follow_price_changes = BooleanField('Follow price changes', default=True)