Add scheme back in destination

This commit is contained in:
7heMech
2025-11-11 12:54:01 +00:00
parent 39c9bbb167
commit 441a7262cd

View File

@@ -51,7 +51,7 @@ export default function Table({ data, isFetching, onEdit, onDelete, onDisableTog
header: intl.formatMessage({ id: "column.destination" }), header: intl.formatMessage({ id: "column.destination" }),
cell: (info: any) => { cell: (info: any) => {
const value = info.getValue(); const value = info.getValue();
return `${value.forwardHost}:${value.forwardPort}`; return `${value.forwardScheme}://${value.forwardHost}:${value.forwardPort}`;
}, },
}), }),
columnHelper.accessor((row: any) => row.certificate, { columnHelper.accessor((row: any) => row.certificate, {