Skip to content

Commit

Permalink
Load queryables for Collections and Items only where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 23, 2025
1 parent 0ff532b commit db54d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SearchFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export default {
},
created() {
let promises = [];
if (this.cql && this.stac) {
if (this.cql && this.stac && this.type !== 'Collections') {
let queryableLink = this.findQueryableLink(this.stac.links);
promises.push(
this.loadQueryables(queryableLink)
Expand Down

0 comments on commit db54d3d

Please sign in to comment.