mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2022-12-28 18:12:07 +02:00
ForwardOptionsAdvancedComponent fix
This commit is contained in:
parent
1a69dbce19
commit
e7696170a0
@ -9,13 +9,22 @@ const ForwardOptionsAdvancedComponent = ({ options }) => {
|
||||
return (
|
||||
<>
|
||||
{options.trailingSlash && (
|
||||
<TrailingSlashCard enabled={options.trailingSlash} />
|
||||
<>
|
||||
<TrailingSlashCard enabled={options.trailingSlash} />
|
||||
<br />
|
||||
</>
|
||||
)}
|
||||
{options.pathOverwrite && (
|
||||
<PathOverwriteCard data={options.pathOverwrite} />
|
||||
<>
|
||||
<PathOverwriteCard data={options.pathOverwrite} />
|
||||
<br />
|
||||
</>
|
||||
)}
|
||||
{options.pathInjection && (
|
||||
<PathInjectionCard data={options.pathInjection} />
|
||||
<>
|
||||
<PathInjectionCard data={options.pathInjection} />
|
||||
<br />
|
||||
</>
|
||||
)}
|
||||
{options.keyOverwrite && <KeyOverwriteCard data={options.keyOverwrite} />}
|
||||
</>
|
||||
|
Loading…
x
Reference in New Issue
Block a user