Browse Source

Merge pull request #4910 from 7heMech/develop

Add scheme back in destination
jc21 1 month ago
parent
commit
3c5ff81a54
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/pages/Nginx/ProxyHosts/Table.tsx

+ 1 - 1
frontend/src/pages/Nginx/ProxyHosts/Table.tsx

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