🎨 Improve database table view select column filter

This commit is contained in:
Daniel 2023-12-11 22:39:26 +08:00
parent 8641d0c6b2
commit 34be166ed8
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -375,7 +375,7 @@ func (value *Value) CompareOperator(other *Value, operator FilterOperator) bool
}
}
if nil != value.MSelect && nil != other.MSelect && 0 < len(value.MSelect) && 0 < len(other.MSelect) {
if nil != value.MSelect && nil != other.MSelect {
switch operator {
case FilterOperatorIsEqual, FilterOperatorContains:
contains := false