From ff1d2f63c8e5f59f8e181eb7c1cbb5476fda6145 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 14 Mar 2021 18:14:10 +0100 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 1 + src/servers/services/ServersExporter.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45b03681..c00a28dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * [#387](https://github.com/shlinkio/shlink-web-client/issues/387) Added a section to see orphan visits stats, when consuming Shlink >=2.6.0. * [#383](https://github.com/shlinkio/shlink-web-client/issues/383) Added title to short URLs list, displayed when consuming Shlink >=2.6.0. * [#368](https://github.com/shlinkio/shlink-web-client/issues/368) Added new settings to define the default interval for visits pages. +* [#349](https://github.com/shlinkio/shlink-web-client/issues/349) Added support to export visits to CSV. ### Changed * [#382](https://github.com/shlinkio/shlink-web-client/issues/382) Ensured short URL tags are edited through the `PATCH /short-urls/{shortCode}` endpoint when using Shlink 2.6.0 or higher. diff --git a/src/servers/services/ServersExporter.ts b/src/servers/services/ServersExporter.ts index b6dc6679..a54536a4 100644 --- a/src/servers/services/ServersExporter.ts +++ b/src/servers/services/ServersExporter.ts @@ -22,7 +22,7 @@ export default class ServersExporter { saveCsv(this.window, csv, SERVERS_FILENAME); } catch (e) { // FIXME Handle error - console.error(e); + console.error(e); // eslint-disable-line no-console } }; }