summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-07-05 03:12:35 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-07-05 03:12:35 +0200
commit0c5d0fa04ba9ac019ccd63993fba137ebe038f21 (patch)
treef45174d1ad197364af07d76a2ba2147eb9ab79bc /assets
parent16fee44dbd2efe2fc968a71b4a21c72d36f7ec1e (diff)
downloadgohugo-theme-ed-0c5d0fa04ba9ac019ccd63993fba137ebe038f21.tar.gz
Fix code style
Diffstat (limited to 'assets')
-rw-r--r--assets/js/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/search.js b/assets/js/search.js
index 489e8fd..8d1e1a8 100644
--- a/assets/js/search.js
+++ b/assets/js/search.js
@@ -41,7 +41,7 @@ async function initSearchIndex() {
// Create the lunr index for the search
searchIndex = lunr(function () { // eslint-disable-line no-undef
// TODO: Add support fpr more languages
- this.use(lunr.multiLanguage('en', 'ru'));
+ this.use(lunr.multiLanguage('en', 'ru')); // eslint-disable-line no-undef
this.field('title');
this.field('categories');