From 2788fea99e86b3cec1067fbe5f6272d4b48bacc0 Mon Sep 17 00:00:00 2001 From: Luis Sevillano Date: Thu, 28 Nov 2019 19:21:58 +0100 Subject: [PATCH] Fix typo in export panel --- src/Export.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Export.svelte b/src/Export.svelte index 09e3eda..cf29b3f 100644 --- a/src/Export.svelte +++ b/src/Export.svelte @@ -20,7 +20,7 @@ import { scaleThreshold } from 'd3-scale'; function palette(min, max) { const d = (max-min)/{steps.length}; - return = scaleThreshold() + return scaleThreshold() .range(['{steps.join(`', '`)}']) .domain([{steps.slice(1).map((v,i) => `min + d*${i+1}`)}]); }