From 80ffa37773f8b0bc9b7e30f35ac7312c2ae855ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Thu, 9 May 2019 13:11:55 +0200 Subject: [PATCH] [TODO] fix separate issue. need a test --- src/component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component.ts b/src/component.ts index f318c940..a8fc489d 100644 --- a/src/component.ts +++ b/src/component.ts @@ -349,7 +349,7 @@ export class Component< if (shouldUpdate) { await this.willUpdateProps(nextProps); this.props = nextProps; - await this.render(false, patchQueue); + await this.render(forceUpdate, patchQueue); } }