Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ Write each change in both `### English` and `### 中文` under `## Unreleased`.

### English

- Restore opening request-history details by using the table row action event supported by HeroUI

### 中文

- 改用 HeroUI 支持的表格行操作事件,恢复点击请求历史查看详情

## 0.4.6 - 2026-09-10

### English
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/LogsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ export function LogsPage() {
</Table.Header>
<Table.Body>
{requests.map((item) => (
<Table.Row key={item.id} className="cursor-pointer" onClick={() => void openDetail(item.id)}>
<Table.Row key={item.id} className="cursor-pointer" onAction={() => void openDetail(item.id)}>
<Table.Cell>
<div className="py-1">
<div className="mono text-xs">{formatTime(item.created_at, lang)}</div>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/webui/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet" />
<script type="module" crossorigin src="/assets/index-DzraaBh3.js"></script>
<script type="module" crossorigin src="/assets/index-CkH3yXd7.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-D5rOrfco.css">
</head>
<body>
Expand Down
Loading