mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-09 05:50:08 +00:00
(corrected) fix Eugeny/tabby#8154 : search panel counter starts from 0
This commit is contained in:
parent
3e559832ec
commit
ab593ac1f3
@ -9,7 +9,7 @@
|
|||||||
(keyup.esc)='close.emit()',
|
(keyup.esc)='close.emit()',
|
||||||
[placeholder]='"Search"|translate'
|
[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')
|
ng-container(*ngIf='state.resultCount > 0')
|
||||||
button.btn.btn-link(
|
button.btn.btn-link(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user