mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 20:35:25 +02:00
feat(app): add ingress to app service form [EE-5569] (#9106)
This commit is contained in:
parent
8c16fbb8aa
commit
89c1d0e337
47 changed files with 1929 additions and 1181 deletions
|
@ -11,7 +11,7 @@ import { columnHelper } from './helper';
|
|||
export const ingressRules = columnHelper.accessor(
|
||||
({ Paths, TLS }) =>
|
||||
// return an accessor function with all the useful text to search for
|
||||
Paths.map((path) => {
|
||||
Paths?.map((path) => {
|
||||
const isHttp = isHTTP(TLS || [], path.Host);
|
||||
return `${isHttp ? 'http' : 'https'}://${path.Host}${path.Path}${
|
||||
path.ServiceName
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue