From 0dd18ba5b387d0c64e8278ec221fda54527f8c5f Mon Sep 17 00:00:00 2001 From: KevinRLeC <32458485+KevinRLeC@users.noreply.github.com> Date: Wed, 25 Oct 2017 16:10:45 -0400 Subject: [PATCH] Removing call to undefined function on resize (#2396) --- lib/components/term-group.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/term-group.js b/lib/components/term-group.js index 69f7d1d6..a57ec0e7 100644 --- a/lib/components/term-group.js +++ b/lib/components/term-group.js @@ -91,7 +91,7 @@ class TermGroup_ extends PureComponent { componentWillReceiveProps(nextProps) { if (this.props.termGroup.sizes != nextProps.termGroup.sizes || nextProps.sizeChanged) { - this.term && this.term.measureResize(); + this.term && this.term.fitResize(); // Indicate to children that their size has changed even if their ratio hasn't this.sizeChanged = true; } else {