mirror of
https://github.com/zadam/trilium.git
synced 2025-11-09 06:45:49 +01:00
always use template strings instead of string concatenation
This commit is contained in:
@@ -37,7 +37,7 @@ export default class FindInHtml {
|
||||
separateWordSearch: false,
|
||||
caseSensitive: matchCase,
|
||||
done: async () => {
|
||||
this.$results = $content.find("." + FIND_RESULT_CSS_CLASSNAME);
|
||||
this.$results = $content.find(`.${FIND_RESULT_CSS_CLASSNAME}`);
|
||||
this.currentIndex = 0;
|
||||
await this.jumpTo();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user