Comments:
- you clear the comparison value if I toggle the criteria operator. Steps:
- set operator to =, and comparison value as 6
- change the operator to >=
- ===> the comparison value is cleared ?
- string comparison with new operators is sometimes incorrect; examples where the tag custom date (string) value is 2023/05/12
- = 2023/05/12 ==> True
- <= 2023/05/12 ==> False ... unexpected
- >= 2023/05/12 ==> True
- > 2023/05/11 ==> True
- < 2023/05/11 ==> False
- > 2023/05/13 ==> True ... unexpected
- < 2023/05/13 ==> False ... unexpected