Fixed display bugs

This commit is contained in:
Dunemask 2022-11-29 18:03:16 -05:00
parent 2d49ff63ce
commit 1084f5d937
2 changed files with 0 additions and 2 deletions

View file

@ -48,7 +48,6 @@ export default function CatalogBox(props) {
}; };
const runTest = () => { const runTest = () => {
console.log(isPipeline);
if (isPipeline) return runPipelineTest(); if (isPipeline) return runPipelineTest();
const jobId = jobCompose({ const jobId = jobCompose({
testNames: [testName], testNames: [testName],

View file

@ -41,7 +41,6 @@ export default function Jobs() {
useEffect(() => { useEffect(() => {
const { job, pipeline, builderCache, hash } = jobHash; const { job, pipeline, builderCache, hash } = jobHash;
console.log(jobState.jobs.filter((j) => !j.isPipeline));
if (!hash) return; if (!hash) return;
if (!job && !pipeline && !builderCache) navigate("/qualiteer/jobs"); if (!job && !pipeline && !builderCache) navigate("/qualiteer/jobs");
}); });