mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
fix: 解决证书详情页其他域名一直为空的问题 (#2542)
Refs https://github.com/1Panel-dev/1Panel/issues/2539
This commit is contained in:
parent
b2ce2c86fb
commit
9d85d52005
@ -17,7 +17,7 @@
|
||||
{{ ssl.primaryDomain }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('website.otherDomains')">
|
||||
{{ ssl.otherDomains }}
|
||||
{{ ssl.domains }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('ssl.provider')">
|
||||
{{ getProvider(ssl.provider) }}
|
||||
@ -71,10 +71,10 @@ import useClipboard from 'vue-clipboard3';
|
||||
import { MsgError, MsgSuccess } from '@/utils/message';
|
||||
const { toClipboard } = useClipboard();
|
||||
|
||||
let open = ref(false);
|
||||
let id = ref(0);
|
||||
let curr = ref('detail');
|
||||
let ssl = ref<any>({});
|
||||
const open = ref(false);
|
||||
const id = ref(0);
|
||||
const curr = ref('detail');
|
||||
const ssl = ref<any>({});
|
||||
|
||||
const handleClose = () => {
|
||||
open.value = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user