refactor: remove > and < comparisons

This commit is contained in:
Carlos Valente
2025-01-24 12:41:04 +01:00
committed by Carlos Valente
parent 7f8dbbfa87
commit a1d34c8f6c
@@ -237,8 +237,11 @@ export default function AutomationForm(props: AutomationFormProps) {
<option value='equals'>equals</option>
<option value='not_equals'>not equals</option>
<option value='contains'>contains</option>
{/*
We dont currently offer a data source where these operators would make sense
<option value='greater_than'>greater than</option>
<option value='less_than'>less than</option>
<option value='less_than'>less than</option>
*/}
</Select>
<Panel.Error>{errors.filters?.[index]?.operator?.message}</Panel.Error>
</label>