rename artifacts tab to diagnostics (#420)

This commit is contained in:
Salih Altun
2024-06-05 19:29:55 +03:00
committed by GitHub
parent 761851a341
commit cf3fb71012
2 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ const router = createBrowserRouter([
element: <TaskParameters />,
},
{
path: "artifacts",
path: "diagnostics",
element: <StepArtifactsLayout />,
},
],

View File

@@ -122,7 +122,7 @@ function TaskDetails() {
Parameters
</NavLink>
<NavLink
to="artifacts"
to="diagnostics"
className={({ isActive }) => {
return cn(
"cursor-pointer px-2 py-1 rounded-md text-muted-foreground",
@@ -132,7 +132,7 @@ function TaskDetails() {
);
}}
>
Artifacts
Diagnostics
</NavLink>
</div>
</div>