diff options
| author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-14 14:50:43 -0400 |
|---|---|---|
| committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-14 14:50:43 -0400 |
| commit | 391de70baf2f8744c617cd790b533fea584b9638 (patch) | |
| tree | 4a2777402b314684f6d39fa0a34b4e314d67ec1f /src/client/views/collections/collectionSchema/CollectionSchemaView.tsx | |
| parent | bd3170d3834c6ef9933813afc42f69df044d055b (diff) | |
func parser bug where multiple references to same doc didn't parse correctly fixed
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionSchema/CollectionSchemaView.tsx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx index 4fc89488d..ba2d2a764 100644 --- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx +++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx @@ -534,11 +534,6 @@ export class CollectionSchemaView extends CollectionSubView() { if (!this._cellHighlightColors.has(cell)) {this._cellHighlightColors.set(cell, `solid 2px ${randomRGBColor()}`)} cell.style.border = this._cellHighlightColors.get(cell); }); - // const cellsToRemove = []; - // this._highlightedCells.forEach(cell => !cellsToHighlight.includes(cell) && cellsToRemove.push(cell)); - // this._highlightedCells = this._highlightedCells.filter(cell => cellsToHighlight.includes(cell)); - // const cellsToAdd = cellsToHighlight.filter(cell => !this._highlightedCells.includes(cell)); - // this._highlightedCells = this._highlightedCells.concat(cellsToAdd); } @action |
