From 967c1af87f2b1d02487ff845aadb99649d440e96 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Wed, 24 Jul 2024 11:39:39 +0800 Subject: [PATCH] fix: 1044410 --- ui/src/layout/components/top-bar/avatar/APIKeyDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/layout/components/top-bar/avatar/APIKeyDialog.vue b/ui/src/layout/components/top-bar/avatar/APIKeyDialog.vue index c6a828236..8febe0e44 100644 --- a/ui/src/layout/components/top-bar/avatar/APIKeyDialog.vue +++ b/ui/src/layout/components/top-bar/avatar/APIKeyDialog.vue @@ -104,7 +104,7 @@ const props = defineProps({ }) const emit = defineEmits(['addData']) -const apiUrl = window.location.origin + '/doc' +const apiUrl = window.location.origin + '/doc/' const SettingAPIKeyDialogRef = ref() const dialogVisible = ref(false) const loading = ref(false)