2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-07 08:17:14 +08:00

fix: 网站列表HTTPS显示不正确

This commit is contained in:
耗子
2024-10-23 15:21:52 +08:00
parent 710601600a
commit 817e86466c
2 changed files with 6 additions and 6 deletions

View File

@@ -56,15 +56,15 @@ const columns: any = [
ellipsis: { tooltip: true }
},
{
title: 'SSL',
key: 'ssl',
title: 'HTTPS',
key: 'https',
width: 150,
align: 'center',
render(row: any) {
return h(NSwitch, {
size: 'small',
rubberBand: false,
value: row.ssl,
value: row.https,
onClick: () => handleEdit(row)
})
}