Skip to content

Commit 27425e1

Browse files
committed
build: 修复构建问题 & 更新版本号
1 parent 814de31 commit 27425e1

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
ghcr.io/${{ steps.meta.outputs.repo }}:beta
5959
build-args: |
6060
VERSION=${{ steps.vars.outputs.version }}
61-
platforms: linux/amd64,linux/arm64
61+
platforms: linux/amd64
6262

6363
- name: Output version info
6464
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🚀 NodePassDash
22

3-
![Version](https://img.shields.io/badge/version-2.0.0.beta6-blue.svg)
3+
![Version](https://img.shields.io/badge/version-2.0.0.beta7-blue.svg)
44

55
NodePassDash是一个现代化的 NodePass 管理界面,基于 Go 后端 + Next.js 14、HeroUI 和 TypeScript 构建。提供实时隧道监控、流量统计和端点管理功能。
66

app/tunnels/components/quick-create-tunnel-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface QuickCreateTunnelModalProps {
2525
isOpen: boolean;
2626
onOpenChange: (open: boolean) => void;
2727
onSaved?: () => void;
28-
mode: 'create' | 'edit';
28+
mode?: 'create' | 'edit';
2929
editData?: Partial<Record<string, any>> & { id?: string };
3030
}
3131

app/tunnels/components/toolbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export const TunnelToolBox: React.FC<TunnelToolBoxProps> = ({
271271
<QuickCreateTunnelModal
272272
isOpen={isQuickOpen}
273273
onOpenChange={setIsQuickOpen}
274-
onCreated={onRefresh}
274+
onSaved={onRefresh}
275275
/>
276276
</div>
277277
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "NodePassDash",
3-
"version": "2.0.0.beta6",
3+
"version": "2.0.0.beta7",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)