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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,23 @@ This document records all notable changes to ShadCN Admin.
---


## [1.15.0](https://github.com/perfect-panel/frontend/compare/v1.14.0...v1.15.0) (2026-08-09)

### ✨ Features / 新功能

* **subscribe:** lead the store with a renewal banner ([8aa14a4](https://github.com/perfect-panel/frontend/commit/8aa14a48d38bf61036054e3b4eb49435ad429748))

### 🐛 Bug Fixes / 问题修复

* **request:** surface the server's reason and stop the duplicate error toast ([877c144](https://github.com/perfect-panel/frontend/commit/877c144bb6afc3e60d0563b939fdd64812cae65f)), closes [#145](https://github.com/perfect-panel/frontend/issues/145)

### 🔧 Chores / 其他变更

* **automation:** migrate Swagger and webhook workflows ([40d0c14](https://github.com/perfect-panel/frontend/commit/40d0c1486ffa074bc658a4842e0e0639ca096bd4))
* **release:** Release 1.14.0-dev.1 / 发布版本 1.14.0-dev.1 [skip ci] ([537a8a3](https://github.com/perfect-panel/frontend/commit/537a8a34fb1ed6a8120f2af0a36a7fbab74a6ee4))
* **release:** Release 1.15.0-dev.1 / 发布版本 1.15.0-dev.1 [skip ci] ([a755e2a](https://github.com/perfect-panel/frontend/commit/a755e2a6b11d50d55ca5197e913dc9ad9adc8c2a))
* sync main into develop ([892459f](https://github.com/perfect-panel/frontend/commit/892459fae23c08c9feea98441e75c1c238b2f96b))

## [1.15.0-dev.1](https://github.com/perfect-panel/frontend/compare/v1.14.0...v1.15.0-dev.1) (2026-08-09)

### ✨ Features / 新功能
Expand Down
4 changes: 2 additions & 2 deletions apps/admin/src/sections/order/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ export default function Order() {
<Display type="currency" value={order.amount} />
</Button>
</HoverCardTrigger>
<HoverCardContent>
<HoverCardContent className="w-auto max-w-[80vw]">
<div className="grid gap-3">
{order.trade_no && (
<>
<div className="font-semibold">
{t("tradeNo", "Transaction Number")}
</div>
<span className="text-muted-foreground">
<span className="break-all text-muted-foreground">
{order.trade_no}
</span>
<Separator className="my-2" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.15.0-dev.1",
"version": "1.15.0",
"private": true,
"homepage": "https://github.com/perfect-panel/frontend",
"bugs": {
Expand Down
Loading