Skip to content

Commit 441a726

Browse files
committed
Add scheme back in destination
1 parent 39c9bbb commit 441a726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/pages/Nginx/ProxyHosts/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default function Table({ data, isFetching, onEdit, onDelete, onDisableTog
5151
header: intl.formatMessage({ id: "column.destination" }),
5252
cell: (info: any) => {
5353
const value = info.getValue();
54-
return `${value.forwardHost}:${value.forwardPort}`;
54+
return `${value.forwardScheme}://${value.forwardHost}:${value.forwardPort}`;
5555
},
5656
}),
5757
columnHelper.accessor((row: any) => row.certificate, {

0 commit comments

Comments
 (0)