small fixes
parent
8c9606d683
commit
dfe589ba68
|
@ -55,11 +55,11 @@
|
|||
},
|
||||
"PathOverwrite": {
|
||||
"Label": "Path overwrite",
|
||||
"PathOverwriteTooltip": "Option by which the base path of the application is automatically overwritten in all http text responses received from it."
|
||||
"Tooltip": "Option by which the base path of the application is automatically overwritten in all http text responses received from it."
|
||||
},
|
||||
"PathInjection": {
|
||||
"Label": "Path injection",
|
||||
"PathInjectionTooltip": "PathInjection is useful for applications that doesn't have a configuration for base path. With this option, the reverse proxy server will try to inject the base path in each link from each reasponse content."
|
||||
"Tooltip": "PathInjection is useful for applications that doesn't have a configuration for base path. With this option, the reverse proxy server will try to inject the base path in each link from each reasponse content."
|
||||
},
|
||||
"KeyOverwrite": {
|
||||
"Label": "Key overwrite",
|
||||
|
|
|
@ -46,11 +46,11 @@
|
|||
},
|
||||
"PathOverwrite": {
|
||||
"Label": "Path overwrite",
|
||||
"PathOverwriteTooltip": "Opțiune prin care calea de bază a aplicației este suprascrisă automat în toate răspunsurile de text http primite de la aceasta."
|
||||
"Tooltip": "Opțiune prin care calea de bază a aplicației este suprascrisă automat în toate răspunsurile de text http primite de la aceasta."
|
||||
},
|
||||
"PathInjection": {
|
||||
"Label": "Path injection",
|
||||
"PathInjectionTooltip": "PathInjection este util pentru aplicațiile care nu au o configurație pentru calea de bază. Cu această opțiune, serverul proxy invers va încerca să injecteze calea de bază în fiecare link din fiecare conținut de răspuns."
|
||||
"Tooltip": "PathInjection este util pentru aplicațiile care nu au o configurație pentru calea de bază. Cu această opțiune, serverul proxy invers va încerca să injecteze calea de bază în fiecare link din fiecare conținut de răspuns."
|
||||
},
|
||||
"KeyOverwrite": {
|
||||
"Label": "Key overwrite",
|
||||
|
|
|
@ -40,7 +40,7 @@ ForwardContainer.propTypes = {
|
|||
function mapStateToProps(state, props) {
|
||||
const { sessionId, forwardId } = props.match.params;
|
||||
const session = state.forwards[sessionId];
|
||||
const forward = session?.find(z => (z.forwardId = forwardId));
|
||||
const forward = session?.find(z => z.forwardId === forwardId);
|
||||
|
||||
return {
|
||||
forward
|
||||
|
|
|
@ -13,12 +13,12 @@ const ForwardSummary = ({ forward }) => {
|
|||
|
||||
return (
|
||||
<Grid container>
|
||||
<Grid item xs={6} sm={3} md={3}>
|
||||
<Grid item xs={6} sm={4} md={4}>
|
||||
{`${t("Forward.From")}: `}
|
||||
<span className={classes.value}>{forward.from}</span>
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={6} sm={3} md={3}>
|
||||
<Grid item xs={6}>
|
||||
{`${t("Forward.To")}: `}
|
||||
<span className={classes.value}>{forward.to}</span>
|
||||
</Grid>
|
||||
|
|
Loading…
Reference in New Issue