mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-18 23:36:55 +08:00
Add the parameter appid to apiserver (#18224)
This commit is contained in:
@@ -7,9 +7,11 @@ import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-butt
|
||||
|
||||
type ApiServerProps = {
|
||||
apiBaseUrl: string
|
||||
appId?: string
|
||||
}
|
||||
const ApiServer: FC<ApiServerProps> = ({
|
||||
apiBaseUrl,
|
||||
appId,
|
||||
}) => {
|
||||
const { t } = useTranslation()
|
||||
|
||||
@@ -25,7 +27,7 @@ const ApiServer: FC<ApiServerProps> = ({
|
||||
{t('appApi.ok')}
|
||||
</div>
|
||||
<SecretKeyButton
|
||||
className='!h-8 shrink-0'
|
||||
className='!h-8 shrink-0' appId={appId}
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user