diff --git a/lps-admin/src/components/Layout.tsx b/lps-admin/src/components/Layout.tsx index 97cf906..83b13b2 100644 --- a/lps-admin/src/components/Layout.tsx +++ b/lps-admin/src/components/Layout.tsx @@ -4,13 +4,15 @@ import { useQuery } from "@tanstack/react-query"; import { NavLink, Outlet } from "react-router"; import { healthz } from "../api/client"; +// action: 실제 비용이 드는 실행 페이지(모니터링과 성격이 다름) — 앰버(warn) 마커로 구분. +// group: 이 항목 앞에 구분선(모니터링 ↔ 실행/설정 경계). const MENU = [ { to: "/", label: "대시보드", end: true }, { to: "/jobs", label: "작업 큐" }, { to: "/products", label: "상품·가격" }, { to: "/crawl", label: "크롤 상태" }, { to: "/costs", label: "비용" }, - { to: "/test", label: "테스트 검색" }, + { to: "/test", label: "테스트 검색", action: true, group: true }, { to: "/settings", label: "설정" }, ]; @@ -35,18 +37,23 @@ export default function Layout() {