Skip to content

Commit

Permalink
fix negated condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jun 14, 2024
1 parent 2947386 commit 3bd79cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/core/components/individual_sim_ui/bulk_tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ export class BulkTab extends SimTab {
}

private showIterationsWarning(): boolean {
return !isExternal() && this.iterations > WEB_ITERATIONS_LIMIT;
return isExternal() && this.iterations > WEB_ITERATIONS_LIMIT;
}

private setSimProgress(progress: ProgressMetrics, iterPerSecond: number, currentRound: number, rounds: number, combinations: number) {
Expand Down

0 comments on commit 3bd79cc

Please sign in to comment.