@everchron/ec-shards 5.0.66 → 5.0.68

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": "@everchron/ec-shards",
3
- "version": "5.0.66",
3
+ "version": "5.0.68",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -211,11 +211,10 @@
211
211
  cell.style.width = `${ currentColumnWidth }px`
212
212
  })
213
213
 
214
- let headName = this.name.toLowerCase().replace(' ', '-')
215
- debugger
214
+ let headName = this.uniformName.toLowerCase().replace(' ', '-')
216
215
  const lastIndex = headName.lastIndexOf('-')
217
216
  headName = headName.substring(0, lastIndex)
218
- console.log('headName', '[data-headname=documents-' + headName + '-column-head]')
217
+ console.log('headName', '[data-headname=' + headName + '-column-head]')
219
218
  let columnHeads = document.querySelectorAll('[data-headname="documents-' + headName + '-column-head"]')
220
219
  console.log('columnHeads', columnHeads)
221
220
  columnHeads.forEach(cell => {