Skip to content

Commit 36be5bb

Browse files
committed
fix(results): fix cursor hidden on fast go to end
1 parent 34b0851 commit 36be5bb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/ui/components/results.ui.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,7 @@ export class ResultsUi extends HeavyUi implements InteractiveUi {
204204
MARGINS.ROW_RESULTS_START + this.scroll + 1;
205205

206206
const shouldScrollDown =
207-
this.getRow(this.resultIndex) > this.terminal.rows + this.scroll - 2 &&
208-
this.resultIndex < this.resultsService.results.length - 1;
207+
this.getRow(this.resultIndex) > this.terminal.rows + this.scroll - 2;
209208

210209
const isOnBotton =
211210
this.resultIndex === this.resultsService.results.length - 1;

0 commit comments

Comments
 (0)