diff --git a/CHANGES.rst b/CHANGES.rst index bd551e9c5..2057ba922 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,7 +4,7 @@ Changelog v0.47.0 (unreleased) -------------------- -Contributors to this version: Juliette Lavoie (:user:`juliettelavoie`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`). +Contributors to this version: Juliette Lavoie (:user:`juliettelavoie`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`), David Huard (:user:`huard`). Announcements ^^^^^^^^^^^^^ @@ -14,6 +14,7 @@ Announcements New features and enhancements ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * New functions ``xclim.ensembles.robustness_fractions`` and ``xclim.ensembles.robustness_categories``. The former will replace ``xclim.ensembles.change_significance`` which is now deprecated and will be removed in xclim 0.49 (:pull:`1514`). +* Add indicator ID to searched terms in the indicator search documentation page (:issue:`1525`, :pull:`1528`). Bug fixes ^^^^^^^^^ diff --git a/docs/_static/indsearch.js b/docs/_static/indsearch.js index d657a63f4..c6738d918 100644 --- a/docs/_static/indsearch.js +++ b/docs/_static/indsearch.js @@ -3,7 +3,7 @@ let indicators = []; /* MiniSearch object defining search mechanism */ let miniSearch = new MiniSearch({ - fields: ['title', 'abstract', 'variables', 'keywords'], // fields to index for full-text search + fields: ['title', 'abstract', 'variables', 'keywords', 'id'], // fields to index for full-text search storeFields: ['title', 'abstract', 'vars', 'realm', 'module', 'name', 'keywords'], // fields to return with search results searchOptions: { boost: {'title': 3, 'variables': 2},