From 18d71448be9d39a06f3fdef0c2fb63e085061923 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 25 Jan 2019 16:23:46 -0500 Subject: [PATCH] pacify eslint --- modules/ui/combobox.js | 2 -- modules/ui/fields/localized.js | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/ui/combobox.js b/modules/ui/combobox.js index fb27f7d15..be9702244 100644 --- a/modules/ui/combobox.js +++ b/modules/ui/combobox.js @@ -1,5 +1,3 @@ -import _clone from 'lodash-es/clone'; - import { dispatch as d3_dispatch } from 'd3-dispatch'; diff --git a/modules/ui/fields/localized.js b/modules/ui/fields/localized.js index f2e6e0b38..566eb0f63 100644 --- a/modules/ui/fields/localized.js +++ b/modules/ui/fields/localized.js @@ -225,7 +225,7 @@ export function uiFieldLocalized(field, context) { var parts = name.split(' – '); if (parts.length > 1) { parts.pop(); - var name = parts.join(' – '); + name = parts.join(' – '); utilGetSetValue(input, name); dispatch.call('change', this, { name: name }); }