This commit is contained in:
Alejandro Celaya
2025-03-07 09:34:26 +01:00
parent b46db36a1f
commit de9be5fcf4
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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&nbsp; can <DeleteServerButton server={selectedServer} className="server-error__delete-btn">remove it</DeleteServerButton> or&nbsp;
<Link to={`/server/${selectedServer.id}/edit?reconnect=true`}>edit it</Link>. <Link to={`/server/${selectedServer.id}/edit?reconnect=true`}>edit it</Link>.
</p> </p>

View File

@@ -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.'],
}, },