pawajs 1.4.15 → 1.4.16
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/index.js +3 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1226,6 +1226,9 @@ export const render = (el, contexts = {}, notRender, isName) => {
|
|
|
1226
1226
|
const number = { notRender: null, index: null }
|
|
1227
1227
|
let isIndex=0
|
|
1228
1228
|
Array.from(el.children).forEach((child, index) => {
|
|
1229
|
+
if (child.hasAttribute('p:store')) {
|
|
1230
|
+
return
|
|
1231
|
+
}
|
|
1229
1232
|
number.index = isIndex
|
|
1230
1233
|
isIndex++
|
|
1231
1234
|
if (number.notRender !== null && isIndex <= number.notRender) return
|