mirror of
https://github.com/zadam/trilium.git
synced 2025-11-08 22:35:50 +01:00
fix displaying 1 / 0 in find widget
This commit is contained in:
@@ -39,7 +39,7 @@ export default class FindInHtml {
|
||||
|
||||
res({
|
||||
totalFound: this.$results.length,
|
||||
currentFound: 1
|
||||
currentFound: Math.min(1, this.$results.length)
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user