From d25ed4c0097e40ce448a526b0acdc8d988146339 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sat, 16 Mar 2024 15:55:31 +0800 Subject: [PATCH] chore: update name --- web/air/public/index.html | 2 +- web/air/src/helpers/utils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/air/public/index.html b/web/air/public/index.html index e9697b92..36365c7e 100644 --- a/web/air/public/index.html +++ b/web/air/public/index.html @@ -9,7 +9,7 @@ name="description" content="OpenAI 接口聚合管理,支持多种渠道包括 Azure,可用于二次分发管理 key,仅单可执行文件,已打包好 Docker 镜像,一键部署,开箱即用" /> - New API + One API diff --git a/web/air/src/helpers/utils.js b/web/air/src/helpers/utils.js index 3e1fdb20..580c77ce 100644 --- a/web/air/src/helpers/utils.js +++ b/web/air/src/helpers/utils.js @@ -23,7 +23,7 @@ export function isRoot() { export function getSystemName() { let system_name = localStorage.getItem('system_name'); - if (!system_name) return 'New API'; + if (!system_name) return 'One API'; return system_name; }