aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
index 583829d6c..57327a008 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
@@ -206,7 +206,7 @@ export class CollectionSchemaView extends CollectionSubView() {
)
this._disposers.sortHighlight = reaction(
() => [this.sortField, this._docs, this._selectedDocs, this._highlightedCellsInfo],
- () => {this.sortField && setTimeout(() => this.highlightSortedColumn(), 0)},
+ () => {this.sortField && setTimeout(() => this.highlightSortedColumn())},
{fireImmediately: true}
)
}
@@ -505,7 +505,7 @@ export class CollectionSchemaView extends CollectionSubView() {
if (field || this.sortField){
index = this.columnKeys.indexOf(field || this.sortField);
const increment: number = 100/rowCount;
- for (let i = 0; i < rowCount; ++i){
+ for (let i = 1; i <= rowCount; ++i){
const adjColor = ClientUtils.lightenRGB(16, 66, 230, increment * i);
highlightColors.push(`solid 2px rgb(${adjColor[0]}, ${adjColor[1]}, ${adjColor[2]})`);
}