From 6adcb17fe2c173aeb85ef3ebcd94449d683d1a8a Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Thu, 11 Jun 2020 16:26:06 -0500 Subject: [PATCH] Remove problem field It appears this gets turned into a getter-only computed property somehow, which causes problems when subclasses override it. --- ui/app/components/distribution-bar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/distribution-bar.js b/ui/app/components/distribution-bar.js index 271fa6806..3a7021266 100644 --- a/ui/app/components/distribution-bar.js +++ b/ui/app/components/distribution-bar.js @@ -20,7 +20,7 @@ const sumAggregate = (total, val) => total + val; @classNameBindings('isNarrow:is-narrow') export default class DistributionBar extends Component.extend(WindowResizable) { chart = null; - data = null; + // data = null; FIXME causing a getter-only exception activeDatum = null; isNarrow = false;