Skip to content

Commit

Permalink
feat: Add non-professional version node management page (#7529)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssongliu authored Dec 23, 2024
1 parent 909b10f commit ddd8b6b
Show file tree
Hide file tree
Showing 10 changed files with 666 additions and 598 deletions.
375 changes: 199 additions & 176 deletions frontend/src/assets/iconfont/iconfont.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/src/assets/iconfont/iconfont.js

Large diffs are not rendered by default.

882 changes: 462 additions & 420 deletions frontend/src/assets/iconfont/iconfont.json

Large diffs are not rendered by default.

Binary file modified frontend/src/assets/iconfont/iconfont.ttf
Binary file not shown.
Binary file modified frontend/src/assets/iconfont/iconfont.woff
Binary file not shown.
Binary file modified frontend/src/assets/iconfont/iconfont.woff2
Binary file not shown.
1 change: 1 addition & 0 deletions frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1804,6 +1804,7 @@ const message = {
'Upgrading to the professional version allows customization of panel logo, welcome message, and other information.',
monitor:
'Upgrade to the professional version to view the real-time status of the website, visitor trends, visitor sources, request logs and other information. ',
node: 'Upgrading to the professional version allows you to manage multiple Linux servers with 1Panel.',
},
clean: {
scan: 'Start Scanning',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lang/modules/tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1678,6 +1678,7 @@ const message = {
gpu: '升級專業版可以幫助用戶實時直觀查看到 GPU 的工作負載溫度顯存等重要參數。',
setting: '升級專業版可以自定義面板 Logo歡迎簡介等信息。',
monitor: '升級專業版可以查看網站的即時狀態訪客趨勢訪客來源請求日誌等資訊。 ',
node: '升級專業版可以使用 1Panel 管理多台 linux 伺服器。',
},
clean: {
scan: '開始掃描',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lang/modules/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1678,6 +1678,7 @@ const message = {
gpu: '升级专业版可以帮助用户实时直观查看到 GPU 的工作负载温度显存等重要参数。',
setting: '升级专业版可以自定义面板 Logo欢迎简介等信息。',
monitor: '升级专业版可以查看网站的实时状态访客趋势访客来源请求日志等信息。',
node: '升级专业版可以使用 1Panel 管理多台 linux 服务器。',
},
clean: {
scan: '开始扫描',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/setting/license/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const buttons = [
{
label: i18n.global.t('commons.button.bind'),
disabled: (row: any) => {
return row.status !== 'free';
return row.status !== 'Free';
},
click: (row: any) => {
bindRef.value.acceptParams({ licenseID: row.id, licenseName: row.licenseName });
Expand Down

0 comments on commit ddd8b6b

Please sign in to comment.