Rename Pipeline Runs to Workflow Runs, change URL to /runs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-02-28 13:16:45 -05:00
parent 248f8ae7fc
commit 0d95c27325
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ const user = {
const navigation = [
{ name: "Start", href: "/start" },
{ name: "Pipeline Runs", href: "/pipelines" },
{ name: "Workflow Runs", href: "/runs" },
{ name: "Insights", href: "/insights" },
{ name: "Settings", href: "/settings" },
];

View file

@ -9,7 +9,7 @@ export default [
index("routes/redirect-home.tsx"),
layout("layouts/app-shell.tsx", [
route("start", "routes/start.tsx"),
route("pipelines", "routes/pipelines.tsx"),
route("runs", "routes/pipelines.tsx"),
route("insights", "routes/insights.tsx"),
route("settings", "routes/settings.tsx"),
]),

View file

@ -1,7 +1,7 @@
import type { Route } from "./+types/pipelines";
export function meta({}: Route.MetaArgs) {
return [{ title: "Pipeline Runs — Arc" }];
return [{ title: "Workflow Runs — Arc" }];
}