zova-jsx 1.1.35 → 1.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -163,7 +163,7 @@ class ZovaJsx extends BeanSimple {
|
|
|
163
163
|
const vIf = this.evaluateExpression(actionChild.props?.['v-if'], celScope);
|
|
164
164
|
if (vIf === false) return next(undefined);
|
|
165
165
|
// action
|
|
166
|
-
if (actionChild.type === '
|
|
166
|
+
if (actionChild.type === 'ZovaCommands') {
|
|
167
167
|
// nested action
|
|
168
168
|
eventRes[index] = [];
|
|
169
169
|
return this.renderEventDirect(actionChild, objectAssignReactive({}, celScope), renderContext, eventRes[index], next);
|
package/package.json
CHANGED