marko 4.26.0 → 4.26.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -39,6 +39,7 @@ module.exports = function beginComponent(componentsContext, component, key, owne
39
39
 
40
40
  if (isSplitComponent === false && out.global.noBrowserRerender !== true) {
41
41
  componentDef.x_ |= FLAG_WILL_RERENDER_IN_BROWSER;
42
+ componentDef._wrr = true;
42
43
  componentsContext.y_ = false;
43
44
  }
44
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "4.26.0",
3
+ "version": "4.26.1",
4
4
  "license": "MIT",
5
5
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
6
6
  "dependencies": {
@@ -56,6 +56,7 @@ module.exports = function beginComponent(
56
56
 
57
57
  if (isSplitComponent === false && out.global.noBrowserRerender !== true) {
58
58
  componentDef.___flags |= FLAG_WILL_RERENDER_IN_BROWSER;
59
+ componentDef._wrr = true;
59
60
  componentsContext.___isPreserved = false;
60
61
  }
61
62