diff --git a/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue b/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue
index 933fc7c21..ba1830d2c 100644
--- a/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue
+++ b/ui/src/views/application-overview/component/XPackDisplaySettingDialog.vue
@@ -113,6 +113,13 @@

+
+ {{ xpackForm.disclaimer_value }}
+
@@ -304,8 +311,8 @@ const defaultSetting = {
header_font_color: '#1f2329'
},
float_location: {
- x: { type: '', value: 0 },
- y: { type: '', value: 0 }
+ y: { type: 'bottom', value: 30 },
+ x: { type: 'right', value: 0 }
}
}
@@ -329,8 +336,8 @@ const xpackForm = ref({
header_font_color: '#1f2329'
},
float_location: {
- x: { type: 'bottom', value: 30 },
- y: { type: 'right', value: 0 }
+ y: { type: 'bottom', value: 30 },
+ x: { type: 'right', value: 0 }
}
})
@@ -355,9 +362,13 @@ function resetForm() {
form.value = {
...defaultSetting
}
+ xpackForm.value = {
+ ...defaultSetting
+ }
imgUrl.value = {
avatar: '',
- float_icon: ''
+ float_icon: '',
+ user_avatar: ''
}
}