Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Teams panel style #612

Merged
merged 11 commits into from
Jan 8, 2025
Prev Previous commit
Next Next commit
fix populating filter complex ui with in query filters
  • Loading branch information
nh758 committed Jan 8, 2025
commit f14fbe30ecd6071bd5ebcdb2dc6af0e06f65379a
7 changes: 7 additions & 0 deletions AppBuilder/platform/FilterComplex.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ function _toInternal(cond, fields = []) {
};

if (Array.isArray(cond.value)) cond.includes = cond.value;
if (
cond.rule === "in_query_field" ||
cond.rule === "not_in_query_field"
) {
cond.includes = cond.value.split(":");
}

// else cond.includes = cond.value?.split?.(/,|:/) ?? [];

// if (field?.key == "date" || field?.key == "datetime") {
Expand Down
Loading