Skip to content

Commit 0039452

Browse files
committed
Fix for merge conflict with duplicate query filters
1 parent 6192213 commit 0039452

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

apps/webapp/app/services/runsRepository.server.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -372,16 +372,6 @@ function applyRunFiltersToQueryBuilder<T>(
372372
machines: options.machines,
373373
});
374374
}
375-
376-
if (options.queues && options.queues.length > 0) {
377-
queryBuilder.where("queue IN {queues: Array(String)}", { queues: options.queues });
378-
}
379-
380-
if (options.machines && options.machines.length > 0) {
381-
queryBuilder.where("machine_preset IN {machines: Array(String)}", {
382-
machines: options.machines,
383-
});
384-
}
385375
}
386376

387377
export function parseRunListInputOptions(data: any): RunListInputOptions {

0 commit comments

Comments
 (0)