mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-12 02:23:49 +00:00
Fix typo
This commit is contained in:
@@ -318,7 +318,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
* [#774](https://github.com/shlinkio/shlink-web-client/issues/774) Dropped support for Shlink older than 2.8.0.
|
* [#774](https://github.com/shlinkio/shlink-web-client/issues/774) Dropped support for Shlink older than 2.8.0.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* [#715](https://github.com/shlinkio/shlink-web-client/issues/715) Fixed connection still failing on miss-configured servers, after editing their params to set proper values.
|
* [#715](https://github.com/shlinkio/shlink-web-client/issues/715) Fixed connection still failing on misconfigured servers, after editing their params to set proper values.
|
||||||
|
|
||||||
|
|
||||||
## [3.8.2] - 2022-12-17
|
## [3.8.2] - 2022-12-17
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const ServerError: FCWithDeps<ServerErrorProps, ServerErrorDeps> = ({ servers, s
|
|||||||
{isServerWithId(selectedServer) && (
|
{isServerWithId(selectedServer) && (
|
||||||
<div className="container mt-3 mt-md-5">
|
<div className="container mt-3 mt-md-5">
|
||||||
<p className="fs-5 fw-normal lh-sm">
|
<p className="fs-5 fw-normal lh-sm">
|
||||||
Alternatively, if you think you may have miss-configured this server, you
|
Alternatively, if you think you may have misconfigured this server, you
|
||||||
can <DeleteServerButton server={selectedServer} className="server-error__delete-btn">remove it</DeleteServerButton> or
|
can <DeleteServerButton server={selectedServer} className="server-error__delete-btn">remove it</DeleteServerButton> or
|
||||||
<Link to={`/server/${selectedServer.id}/edit?reconnect=true`}>edit it</Link>.
|
<Link to={`/server/${selectedServer.id}/edit?reconnect=true`}>edit it</Link>.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ describe('<ServerError />', () => {
|
|||||||
notFound: [
|
notFound: [
|
||||||
'Oops! Could not connect to this Shlink server.',
|
'Oops! Could not connect to this Shlink server.',
|
||||||
'Make sure you have internet connection, and the server is properly configured and on-line.',
|
'Make sure you have internet connection, and the server is properly configured and on-line.',
|
||||||
/^Alternatively, if you think you may have miss-configured this server/,
|
/^Alternatively, if you think you may have misconfigured this server/,
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@@ -36,7 +36,7 @@ describe('<ServerError />', () => {
|
|||||||
found: [
|
found: [
|
||||||
'Oops! Could not connect to this Shlink server.',
|
'Oops! Could not connect to this Shlink server.',
|
||||||
'Make sure you have internet connection, and the server is properly configured and on-line.',
|
'Make sure you have internet connection, and the server is properly configured and on-line.',
|
||||||
/^Alternatively, if you think you may have miss-configured this server/,
|
/^Alternatively, if you think you may have misconfigured this server/,
|
||||||
],
|
],
|
||||||
notFound: ['Could not find this Shlink server.'],
|
notFound: ['Could not find this Shlink server.'],
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user