Skip to content

Commit ae02182

Browse files
authored
Fix icon and description for ALL (#1196)
* Fix the icon and description when technologies is ALL * Exit early * Restore line
1 parent e4cdf2e commit ae02182

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/js/techreport/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@ class TechReport {
300300
getTechInfo() {
301301
const technologies = this.filters.app;
302302
const technology = technologies.map(encodeURIComponent).join(',');
303+
304+
if (technology === 'ALL') {
305+
return;
306+
}
307+
303308
const url = `${Constants.apiBase}/technologies?technology=${technology}`;
304309

305310
fetch(url)

0 commit comments

Comments
 (0)