From 4a9048f59fac2c57cc53d84837605e7f6c63f3da Mon Sep 17 00:00:00 2001 From: Frank Felgner Date: Mon, 8 Mar 2021 14:07:54 +0100 Subject: [PATCH] fix missing semicolon --- src/js/charts/BaseChart.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/charts/BaseChart.js b/src/js/charts/BaseChart.js index 3452fe8..ea6c064 100644 --- a/src/js/charts/BaseChart.js +++ b/src/js/charts/BaseChart.js @@ -6,12 +6,12 @@ import { BASE_MEASURES, getExtraHeight, getExtraWidth, getTopOffset, getLeftOffs import { getColor, isValidColor } from '../utils/colors'; import { runSMILAnimation } from '../utils/animation'; import { downloadFile, prepareForExport } from '../utils/export'; -import { deepClone } from '../utils/helpers' +import { deepClone } from '../utils/helpers'; export default class BaseChart { constructor(parent, options) { // deepclone options to avoid making changes to orignal object - options = deepClone(options) + options = deepClone(options); this.parent = typeof parent === 'string' ? document.querySelector(parent)