From 83fa8ed36fc0ead50ccbfe31cb53da36721f04cc Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 4 Apr 2025 12:12:45 +0200 Subject: [PATCH] Field name update - Keyword triggers - Trigger/wait for text --- changedetectionio/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/forms.py b/changedetectionio/forms.py index 26815a45..559516da 100644 --- a/changedetectionio/forms.py +++ b/changedetectionio/forms.py @@ -586,7 +586,7 @@ class processor_text_json_diff_form(commonSettingsForm): filter_text_replaced = BooleanField('Replaced/changed lines', default=True) filter_text_removed = BooleanField('Removed lines', default=True) - trigger_text = StringListField('Trigger/wait for text', [validators.Optional(), ValidateListRegex()]) + trigger_text = StringListField('Keyword triggers - Trigger/wait for text', [validators.Optional(), ValidateListRegex()]) if os.getenv("PLAYWRIGHT_DRIVER_URL"): browser_steps = FieldList(FormField(SingleBrowserStep), min_entries=10) text_should_not_be_present = StringListField('Block change-detection while text matches', [validators.Optional(), ValidateListRegex()])