diff --git a/public/locales/en/translations.json b/public/locales/en/translations.json index 515851d..265d6fc 100644 --- a/public/locales/en/translations.json +++ b/public/locales/en/translations.json @@ -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", diff --git a/public/locales/ro/translations.json b/public/locales/ro/translations.json index 463ee86..4c8327b 100644 --- a/public/locales/ro/translations.json +++ b/public/locales/ro/translations.json @@ -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", diff --git a/src/features/forwards/core/components/ForwardContainer.js b/src/features/forwards/core/components/ForwardContainer.js index 4c7fc00..33806c7 100644 --- a/src/features/forwards/core/components/ForwardContainer.js +++ b/src/features/forwards/core/components/ForwardContainer.js @@ -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 diff --git a/src/features/forwards/core/components/ForwardSummary.js b/src/features/forwards/core/components/ForwardSummary.js index a8d0904..c1ece8b 100644 --- a/src/features/forwards/core/components/ForwardSummary.js +++ b/src/features/forwards/core/components/ForwardSummary.js @@ -13,12 +13,12 @@ const ForwardSummary = ({ forward }) => { return ( - + {`${t("Forward.From")}: `} {forward.from} - + {`${t("Forward.To")}: `} {forward.to}