mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
Merge pull request #8198 from Clem-Fern/fix#8154
fix Eugeny/tabby#8154 : search panel counter starts from 0
This commit is contained in:
commit
7da2a15bf7
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
(keyup.esc)='close.emit()',
|
||||
[placeholder]='"Search"|translate'
|
||||
)
|
||||
.input-group-text.result-counter(*ngIf='state.resultCount > 0') {{state.resultIndex ?? 0 + 1}} / {{state.resultCount}}
|
||||
.input-group-text.result-counter(*ngIf='state.resultCount > 0') {{(state.resultIndex ?? 0) + 1}} / {{state.resultCount}}
|
||||
|
||||
ng-container(*ngIf='state.resultCount > 0')
|
||||
button.btn.btn-link(
|
||||
|
|
Loading…
Reference in a new issue