Skip to content

Commit 9ec90f8

Browse files
author
chuangyiyongxian
committed
Fix remaining LLM Bench references in UI to LLM API Radar
Update logo text in App.tsx and Sidebar.tsx, and workflow subtitle.
1 parent 78974da commit 9ec90f8

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

backend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llm-benchmark-backend",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "LLM API Radar - Backend",
55
"main": "dist/index.js",
66
"scripts": {

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

frontend/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const PAGE_ROUTES: Record<string, string> = {
4646
};
4747

4848
const pageConfig: Record<string, { title: string; subtitle: string }> = {
49-
workflow: { title: 'Workflow', subtitle: 'Configure and run LLM benchmarks' },
49+
workflow: { title: 'Workflow', subtitle: 'Configure and run LLM API benchmarks' },
5050
history: { title: 'History', subtitle: 'Browse past workflow results' },
5151
'history-detail': { title: 'Workflow Detail', subtitle: 'View workflow results' },
5252
playground: { title: 'Playground', subtitle: 'Test model connections and view responses' },
@@ -349,7 +349,7 @@ function App() {
349349
</svg>
350350
</div>
351351
<div>
352-
<div className="text-[13px] font-semibold text-text-primary leading-none">LLM Bench</div>
352+
<div className="text-[13px] font-semibold text-text-primary leading-none">LLM API Radar</div>
353353
<div className="text-[9px] text-text-tertiary mt-0.5 font-mono">{APP_VERSION}</div>
354354
</div>
355355
</div>

frontend/src/components/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function Sidebar({ activePage, onNavigate, isRunning, runningLabel, onLog
7373
</svg>
7474
</div>
7575
<div>
76-
<div className="text-[13px] font-semibold text-text-primary leading-none">LLM Bench</div>
76+
<div className="text-[13px] font-semibold text-text-primary leading-none">LLM API Radar</div>
7777
<div className="text-[9px] text-text-tertiary mt-0.5 font-mono">{APP_VERSION}</div>
7878
</div>
7979
</div>

0 commit comments

Comments
 (0)