diff --git a/src/components/timeline/form/TimelineEditor/DynamicFilter.svelte b/src/components/timeline/form/TimelineEditor/DynamicFilter.svelte index eb3aa7feae..a4a9cfa199 100644 --- a/src/components/timeline/form/TimelineEditor/DynamicFilter.svelte +++ b/src/components/timeline/form/TimelineEditor/DynamicFilter.svelte @@ -212,10 +212,11 @@ autocomplete="off" /> {:else if currentOperator === 'is_within' || currentOperator === 'is_not_within'} - {#if Array.isArray(currentValue)} + {#if Array.isArray(currentValue) && currentValue.length === 2}
To