Merge pull request #1135 from acelaya-forks/feature/fix-firefox-import

Fix importing servers in Firefox for Android
This commit is contained in:
Alejandro Celaya 2024-04-11 09:06:58 +02:00 committed by GitHub
commit b9fb398d3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
* [shlink-web-component#294](https://github.com/shlinkio/shlink-web-component/issues/294) Make sure "validate URL" control is not displayed in short URL creation/edition, when consuming Shlink >=4.0.0.
* [#1130](https://github.com/shlinkio/shlink-web-client/issues/1130) Fix importing servers in Firefox for Android when the CSV file contains spaces.
## [4.1.0] - 2024-03-17

View file

@ -87,7 +87,7 @@ const ImportServersBtn: FCWithDeps<ImportServersBtnConnectProps, ImportServersBt
You can create servers by importing a CSV file with <b>name</b>, <b>apiKey</b> and <b>url</b> columns.
</UncontrolledTooltip>
<input type="file" accept="text/csv" className="d-none" ref={ref} onChange={onFile} aria-hidden />
<input type="file" accept=".csv" className="d-none" ref={ref} onChange={onFile} aria-hidden />
<DuplicatedServersModal
isOpen={isModalOpen}