We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecfa22 commit 6d1d9aeCopy full SHA for 6d1d9ae
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.runs._index/route.tsx
@@ -64,10 +64,12 @@ export default function Page() {
64
<PageTitle title="Runs" />
65
</NavBar>
66
<PageBody>
67
- {list.possibleTasks.length === 0 ? (
68
- <CreateFirstTaskInstructions />
69
- ) : list.runs.length === 0 && !list.hasFilters ? (
70
- <RunTaskInstructions />
+ {list.runs.length === 0 && !list.hasFilters ? (
+ list.possibleTasks.length === 0 ? (
+ <CreateFirstTaskInstructions />
+ ) : (
71
+ <RunTaskInstructions />
72
+ )
73
) : (
74
<div className={cn("grid h-fit grid-cols-1 gap-4")}>
75
<div>
0 commit comments