forked from geolba/tethys.frontend
- Pagination arrow color fixed according to page
- Data type showed in suggestions corrected according to user-friendly values
This commit is contained in:
parent
7953b3c09c
commit
826c5b8c4e
5 changed files with 46 additions and 7 deletions
|
@ -57,7 +57,7 @@ export default class ActiveFacetCategory extends Vue {
|
|||
* If the category alias is Data Type, the name of the items is set
|
||||
* NOTE: This could be corrected directly in the index
|
||||
*/
|
||||
filterItemsAlias(categoryAlias: string): string {
|
||||
getFilterItemsAlias(categoryAlias: string): string {
|
||||
console.log(categoryAlias);
|
||||
if (categoryAlias === ("data type") || categoryAlias === ("language")) {
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<label v-bind:for="categoryAlias" class="css-label">
|
||||
<span>{{ categoryAlias + ": " }}</span>
|
||||
<!-- <a v-if="filterItems && filterItems.length > 0" class="gsaterm">{{ filterItems.join(" | ") }}</a> -->
|
||||
<a v-if="filterItems && filterItems.length > 0" class="gsaterm">{{ filterItemsAlias(categoryAlias) }}</a>
|
||||
<a v-if="filterItems && filterItems.length > 0" class="gsaterm">{{ getFilterItemsAlias(categoryAlias) }}</a>
|
||||
</label>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue