Changes for page CLB Search Component
Last modified by bougault on 2023/01/17 11:42
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -52,7 +52,7 @@ 52 52 53 53 handleSearch = () => { 54 54 const value = this.$('input[type="text"]').value; 55 - fetch(`${this.searchBaseUrl}${encodeURIComponent(value)} &offset=${this.offset}`)55 + fetch(`${this.searchBaseUrl}${encodeURIComponent(value)}`) 56 56 .then(res => res.json()) 57 57 .then(this.renderResults); 58 58 }