mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-13 05:45:15 +00:00
Merge pull request #4910 from 7heMech/develop
Add scheme back in destination
This commit is contained in:
@@ -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, {
|
||||
|
||||
Reference in New Issue
Block a user