File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
application-overview/xpack-component Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5757 <el-button
5858 type =" primary"
5959 text
60- @click =" copyClick(form.authentication_value)"
60+ @click =" copyClick(form.authentication_value.password_value )"
6161 style =" margin : 0 0 0 4px !important "
6262 >
6363 <AppIcon iconName =" app-copy" ></AppIcon >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import { useRoute } from 'vue-router'
1313import useStore from ' @/stores'
1414
1515const route = useRoute ()
16- const { chatUser } = useStore ()
16+ const { chatUser, common } = useStore ()
1717
1818const components: any = import .meta .glob (' @/views/chat/**/index.vue' , {
1919 eager: true ,
@@ -27,7 +27,7 @@ const {
2727const currentTemplate = computed (() => {
2828 let modeName = ' '
2929 if (! mode || mode === ' pc' ) {
30- modeName = ' pc'
30+ modeName = common . isMobile () ? ' mobile ' : ' pc'
3131 } else {
3232 modeName = mode
3333 }
You can’t perform that action at this time.
0 commit comments