We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cdf2e commit ae02182Copy full SHA for ae02182
1 file changed
src/js/techreport/index.js
@@ -300,6 +300,11 @@ class TechReport {
300
getTechInfo() {
301
const technologies = this.filters.app;
302
const technology = technologies.map(encodeURIComponent).join(',');
303
+
304
+ if (technology === 'ALL') {
305
+ return;
306
+ }
307
308
const url = `${Constants.apiBase}/technologies?technology=${technology}`;
309
310
fetch(url)
0 commit comments