mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
add event type filter button and implementation to journeys Close #2803
Some checks failed
Node.js CI / build (push) Has been cancelled
Some checks failed
Node.js CI / build (push) Has been cancelled
This commit is contained in:
parent
355fa1e9a9
commit
128217c0f4
5 changed files with 39 additions and 4 deletions
|
|
@ -60,7 +60,7 @@ async function relationalQuery(
|
|||
endStepQuery: string;
|
||||
params: Record<string, string>;
|
||||
} {
|
||||
const params = {};
|
||||
const params: { startStep?: string; endStep?: string } = {};
|
||||
let sequenceQuery = '';
|
||||
let startStepQuery = '';
|
||||
let endStepQuery = '';
|
||||
|
|
@ -172,7 +172,7 @@ async function clickhouseQuery(
|
|||
endStepQuery: string;
|
||||
params: Record<string, string>;
|
||||
} {
|
||||
const params = {};
|
||||
const params: { startStep?: string; endStep?: string } = {};
|
||||
let sequenceQuery = '';
|
||||
let startStepQuery = '';
|
||||
let endStepQuery = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue