mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 20:06:03 +02:00
proxy: fix routes portal error message (#5476)
This commit is contained in:
parent
c8323ba744
commit
229ef72e58
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ const RoutesPage: FC<RoutesPageProps> = ({ data }) => {
|
||||||
return (
|
return (
|
||||||
<SidebarPage>
|
<SidebarPage>
|
||||||
<Stack spacing={2}>
|
<Stack spacing={2}>
|
||||||
{data?.routes ? (
|
{data?.routes?.length > 0 ? (
|
||||||
<>
|
<>
|
||||||
<RoutesSection
|
<RoutesSection
|
||||||
type={"http"}
|
type={"http"}
|
||||||
|
|
Loading…
Add table
Reference in a new issue