TF-4229 Add isSelected && condition to non-RTL selectedIconWidget rendering to match RTL behavior.
This commit is contained in:
@@ -151,8 +151,8 @@ class SearchEmailFilter with EquatableMixin, OptionParamMixin {
|
||||
Operator.AND,
|
||||
hasKeyword.map((e) => EmailFilterCondition(hasKeyword: e)).toSet(),
|
||||
),
|
||||
if (label != null)
|
||||
EmailFilterCondition(hasKeyword: label!.keyword?.value),
|
||||
if (label?.keyword?.value != null)
|
||||
EmailFilterCondition(hasKeyword: label!.keyword!.value),
|
||||
if (moreFilterCondition != null && moreFilterCondition.hasCondition)
|
||||
moreFilterCondition
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user