Skip to content

Commit f9bb944

Browse files
committed
fix issue with autoupdate with >=100 results
1 parent 26af1df commit f9bb944

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlow/src/public/CommonControllers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ module openflow {
623623
this.models = await this.api.Query(this.collection, query, this.baseprojection, this.orderby);
624624
this.loading = false;
625625
if (this.autorefresh) {
626-
if (this.models.length > 100) {
626+
if (this.models.length >= 100) {
627627
// console.warn("Disabling auto refresh, result has more than 100 entries");
628628
} else {
629629
if (this.autorefreshpromise == null && this.searchstring === "") {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.360
1+
0.0.361

0 commit comments

Comments
 (0)