feature(dashboard): improved funnels

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-03-23 21:13:32 +01:00
committed by GitHub
parent bb018d55ca
commit 1257381bf2
14 changed files with 741 additions and 341 deletions

View File

@@ -154,7 +154,7 @@ export class Query<T = any> {
if (!Array.isArray(value) && !(value instanceof Expression)) {
throw new Error(`${operator} operator requires an array value`);
}
return `${column} ${operator} (${this.escapeValue(value)})`;
return `${column} ${operator} ${this.escapeValue(value)}`;
default:
return `${column} ${operator} ${this.escapeValue(value!)}`;
}