2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 12:40:25 +08:00

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

This commit is contained in:
2026-01-26 17:54:11 +08:00
parent fba22ddae2
commit d87a9e3f02

View File

@@ -60,13 +60,13 @@ const columns: any = [
},
{
title: 'HTTPS',
key: 'https',
key: 'ssl',
width: 150,
render(row: any) {
return h(NSwitch, {
size: 'small',
rubberBand: false,
value: row.https,
value: row.ssl,
onClick: () => handleEdit(row)
})
}