ninegrid2 6.430.0 → 6.431.0

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.
@@ -14873,7 +14873,7 @@ class ngColumns
14873
14873
  return {
14874
14874
  "name": el.dataset.bind,
14875
14875
  "type": (el.dataset.type || "string").toLocaleLowerCase(),
14876
- "desc": ths.length > 0 ? ths[this.length - 1].getAttribute("title") : null,
14876
+ "desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
14877
14877
  };
14878
14878
  };
14879
14879
 
@@ -14871,7 +14871,7 @@ class ngColumns
14871
14871
  return {
14872
14872
  "name": el.dataset.bind,
14873
14873
  "type": (el.dataset.type || "string").toLocaleLowerCase(),
14874
- "desc": ths.length > 0 ? ths[this.length - 1].getAttribute("title") : null,
14874
+ "desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
14875
14875
  };
14876
14876
  };
14877
14877
 
@@ -20,7 +20,7 @@ export class ngColumns
20
20
  return {
21
21
  "name": el.dataset.bind,
22
22
  "type": (el.dataset.type || "string").toLocaleLowerCase(),
23
- "desc": ths.length > 0 ? ths[this.length - 1].getAttribute("title") : null,
23
+ "desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
24
24
  };
25
25
  };
26
26
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.430.0",
4
+ "version": "6.431.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -20,7 +20,7 @@ export class ngColumns
20
20
  return {
21
21
  "name": el.dataset.bind,
22
22
  "type": (el.dataset.type || "string").toLocaleLowerCase(),
23
- "desc": ths.length > 0 ? ths[this.length - 1].getAttribute("title") : null,
23
+ "desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
24
24
  };
25
25
  };
26
26