Skip to content

Commit

Permalink
Fix typo in AccessURLTable (#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
antgamdia committed Oct 28, 2020
1 parent 8f27769 commit 7259335
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function AccessURLTable({ ingressRefs, serviceRefs }: IAccessURLT
.concat(
allIngresses.map(ingress => {
return {
url: ingress.item ? getAnchors(GetURLItemFromIngress(ingress.item).URLs) : "Unkown",
url: ingress.item ? getAnchors(GetURLItemFromIngress(ingress.item).URLs) : "Unknown",
type: "Ingress",
notes: ingress.error ? (
<span>Error: {ingress.error.message}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ exports[`when the app contains resources with errors displays the error 1`] = `
could not find Ingress
</span>,
"type": "Ingress",
"url": "Unkown",
"url": "Unknown",
},
]
}
Expand Down Expand Up @@ -517,7 +517,7 @@ exports[`when the app contains resources with errors displays the error 1`] = `
could not find Ingress
</span>,
"type": "Ingress",
"url": "Unkown",
"url": "Unknown",
}
}
>
Expand All @@ -526,7 +526,7 @@ exports[`when the app contains resources with errors displays the error 1`] = `
className=""
key="0-url"
>
Unkown
Unknown
</td>
<td
className=""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function getData(
});
return data;
}
data[accessors[1]] = <span>Unkown</span>;
data[accessors[1]] = <span>Unknown</span>;
return;
}

Expand Down

0 comments on commit 7259335

Please sign in to comment.