diff --git a/ui/src/views/application-overview/index.vue b/ui/src/views/application-overview/index.vue
index b08d3cd1a..731d43baa 100644
--- a/ui/src/views/application-overview/index.vue
+++ b/ui/src/views/application-overview/index.vue
@@ -95,13 +95,27 @@
{{
@@ -172,6 +186,8 @@ const {
const apiUrl = window.location.origin + '/doc/chat/'
+const baseUrl = window.location.origin + '/api/application/'
+
const DisplaySettingDialogRef = ref()
const EditAvatarDialogRef = ref()
const LimitDialogRef = ref()
@@ -225,6 +241,9 @@ const statisticsData = ref([])
const showEditIcon = ref(false)
+function toUrl(url: string) {
+ window.open(url, '_blank')
+}
function openDisplaySettingDialog() {
DisplaySettingDialogRef.value.open(accessToken.value)
}
diff --git a/ui/src/workflow/nodes/reranker-node/index.vue b/ui/src/workflow/nodes/reranker-node/index.vue
index b92fee445..d4d5576d8 100644
--- a/ui/src/workflow/nodes/reranker-node/index.vue
+++ b/ui/src/workflow/nodes/reranker-node/index.vue
@@ -195,6 +195,7 @@
@submit="getModel"
@change="openCreateModel($event)"
>
+