diff --git a/src/js/techreport/index.js b/src/js/techreport/index.js index 2b139148..7ca29342 100644 --- a/src/js/techreport/index.js +++ b/src/js/techreport/index.js @@ -300,6 +300,11 @@ class TechReport { getTechInfo() { const technologies = this.filters.app; const technology = technologies.map(encodeURIComponent).join(','); + + if (technology === 'ALL') { + return; + } + const url = `${Constants.apiBase}/technologies?technology=${technology}`; fetch(url)