Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarah German <sgerman@gitlab.com>2022-08-30 19:43:32 +0300
committerSarah German <sgerman@gitlab.com>2022-08-30 19:43:32 +0300
commit9c16364c7bbd0fc633fc5644c17f02addc81a4df (patch)
tree9f931897d278dbced6968e83c764ccb61523c486
parent050a14662c70aac1b3e1a3c543961eab258a790b (diff)
Use named import
-rw-r--r--content/frontend/deprecations/filters.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/frontend/deprecations/filters.js b/content/frontend/deprecations/filters.js
index ea9e2880..1be9d3a8 100644
--- a/content/frontend/deprecations/filters.js
+++ b/content/frontend/deprecations/filters.js
@@ -1,5 +1,5 @@
import Vue from 'vue';
-import compareVersions from 'compare-versions';
+import { compareVersions } from 'compare-versions';
import DeprecationFilters from './components/deprecation_filters.vue';
/**