From 6da7e6158f14421d41fe50b8cacdce2e8027b14b Mon Sep 17 00:00:00 2001 From: AirLin <49427685+AAirLin@users.noreply.github.com> Date: Wed, 16 Apr 2025 23:07:05 +0800 Subject: [PATCH] Add the parameter appid to apiserver (#18224) --- web/app/components/develop/ApiServer.tsx | 4 +++- web/app/components/develop/index.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/app/components/develop/ApiServer.tsx b/web/app/components/develop/ApiServer.tsx index 4de98c6cd4..9f2c9cf7f4 100644 --- a/web/app/components/develop/ApiServer.tsx +++ b/web/app/components/develop/ApiServer.tsx @@ -7,9 +7,11 @@ import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-butt type ApiServerProps = { apiBaseUrl: string + appId?: string } const ApiServer: FC = ({ apiBaseUrl, + appId, }) => { const { t } = useTranslation() @@ -25,7 +27,7 @@ const ApiServer: FC = ({ {t('appApi.ok')} ) diff --git a/web/app/components/develop/index.tsx b/web/app/components/develop/index.tsx index 5b14b680c1..c3f88a15f8 100644 --- a/web/app/components/develop/index.tsx +++ b/web/app/components/develop/index.tsx @@ -23,7 +23,7 @@ const DevelopMain = ({ appId }: IDevelopMainProps) => {
- +