From 65fe59bfd7f902104f849f543d15072a41228c56 Mon Sep 17 00:00:00 2001 From: Eric Herbrandson Date: Thu, 7 May 2020 15:28:12 -0500 Subject: [PATCH] Fixing bug in ingress view when there are no paths configured --- client/src/views/ingress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/ingress.js b/client/src/views/ingress.js index 81b8df0..61a2ec5 100644 --- a/client/src/views/ingress.js +++ b/client/src/views/ingress.js @@ -61,7 +61,7 @@ export default class Ingress extends Base { ( - {rule.http.paths.map(path => ( + {_.map(rule.http.paths, path => ( {rule.host} {path.path}