Skip to content

Commit

Permalink
use fixed queryables response
Browse files Browse the repository at this point in the history
  • Loading branch information
baloola committed Feb 22, 2024
1 parent 5873dbf commit d1046b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/SearchFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,12 @@ export default {
created() {
let promises = [];
if (this.cql && this.stac) {
this.stac.links.push({
title: "Queryables",
href: "https://stacapi.eoxhub.fairicube.eu/queryables",
rel: "http://www.opengis.net/def/rel/ogc/1.0/queryables",
type: "application/schema+json"
})
let queryableLink = this.findQueryableLink(this.stac.links);
promises.push(
this.loadQueryables(queryableLink)
Expand Down Expand Up @@ -604,7 +610,7 @@ $primary-color: map-get($theme-colors, "primary");
color: #495057;
border-color: #495057 transparent transparent;
}
.multiselect__tags,
.multiselect__single {
border-color: #ced4da;
Expand Down

0 comments on commit d1046b9

Please sign in to comment.