diff --git a/ui/src/views/application-overview/index.vue b/ui/src/views/application-overview/index.vue
index 618aed9c2..113846988 100644
--- a/ui/src/views/application-overview/index.vue
+++ b/ui/src/views/application-overview/index.vue
@@ -71,11 +71,18 @@
-
-
- {{ $t('views.applicationOverview.appInfo.demo') }}
-
- {{ $t('views.applicationOverview.appInfo.demo') }}
+
+ {{ $t('views.applicationOverview.appInfo.demo') }}
+
+
+ {{ $t('views.applicationOverview.appInfo.demo') }}
{{ $t('views.applicationOverview.appInfo.embedThirdParty') }}
@@ -353,23 +360,22 @@ function getDetail() {
?.filter((v: any) => v.id === 'base-node')
.map((v: any) => {
apiInputParams.value = v.properties.api_input_field_list
- ? v.properties.api_input_field_list
- .map((v: any) => {
- return {
- name: v.variable,
- value: v.default_value
- }
- })
+ ? v.properties.api_input_field_list.map((v: any) => {
+ return {
+ name: v.variable,
+ value: v.default_value
+ }
+ })
: v.properties.input_field_list
- ? v.properties.input_field_list
- .filter((v: any) => v.assignment_method === 'api_input')
- .map((v: any) => {
- return {
- name: v.variable,
- value: v.default_value
- }
- })
- : []
+ ? v.properties.input_field_list
+ .filter((v: any) => v.assignment_method === 'api_input')
+ .map((v: any) => {
+ return {
+ name: v.variable,
+ value: v.default_value
+ }
+ })
+ : []
})
})
}