Remove problem field

It appears this gets turned into a getter-only computed property
somehow, which causes problems when subclasses override it.
This commit is contained in:
Buck Doyle
2020-06-11 16:26:06 -05:00
parent e993a71f6f
commit 6adcb17fe2

View File

@@ -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;