chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-08-24 14:52:59 +00:00
parent a77ac8ad91
commit df16dc94f7
17 changed files with 142 additions and 125 deletions

View file

@ -241,7 +241,7 @@ export function evaluateFilterNode(
export function explainFilter(filter: Filter): string {
const patterns = toPatterns(filter);
const value = patterns.map((m) => JSON.stringify(m)).join(" or ");
const label = filter.type === "field" ? filter.path ?? "field" : filter.type;
const label = filter.type === "field" ? (filter.path ?? "field") : filter.type;
const op = filter.op ?? "eq";
let base: string;
if (filter.type === "keyword") {