vsn 0.1.104 → 0.1.105

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vsn",
3
- "version": "0.1.104",
3
+ "version": "0.1.105",
4
4
  "description": "SEO Friendly Javascript/Typescript Framework",
5
5
  "keywords": [
6
6
  "framework",
@@ -99,7 +99,8 @@ export class List extends Attribute {
99
99
  const tag: Tag = await this.tag.dom.getTagForElement(element);
100
100
  if (tag) {
101
101
  this.tags.push(tag);
102
- this.items.push(tag.scope.get(this.listItemName) || tag.scope.wrapped || tag.scope);
102
+ let listModel = tag.scope.get(this.listItemName);
103
+ this.items.push(listModel?.wrapped || listModel || tag.scope.wrapped || tag.scope);
103
104
  }
104
105
  }
105
106
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.1.104';
1
+ export const VERSION = '0.1.105';
2
2