diff --git a/src/components/active-facet-category/ActiveFacetCategory.ts b/src/components/active-facet-category/ActiveFacetCategory.ts index 5e7b410..02b3581 100644 --- a/src/components/active-facet-category/ActiveFacetCategory.ts +++ b/src/components/active-facet-category/ActiveFacetCategory.ts @@ -5,7 +5,7 @@ import { Component, Vue, Prop, Emit } from "vue-facing-decorator"; name: "ActiveFacetCategory", }) export default class ActiveFacetCategory extends Vue { - + @Prop({ type: Array, }) @@ -46,7 +46,7 @@ export default class ActiveFacetCategory extends Vue { case "subjects": return "keyword"; case "doctype": - return "Data Type"; + return "data type"; default: return this.categoryName; } @@ -59,7 +59,7 @@ export default class ActiveFacetCategory extends Vue { */ filterItemsAlias(categoryAlias: string): string { console.log(categoryAlias); - if (categoryAlias === ("Data Type") || categoryAlias === ("language")) { + if (categoryAlias === ("data type") || categoryAlias === ("language")) { /** * Iterate over the filterItems array using the map method to create a new array (updatedItems). * For each item in the array, check if the item exists as a key in the replacements map. diff --git a/src/components/active-facet-category/active-facet-category.vue b/src/components/active-facet-category/active-facet-category.vue index ffd6734..3f18541 100644 --- a/src/components/active-facet-category/active-facet-category.vue +++ b/src/components/active-facet-category/active-facet-category.vue @@ -5,7 +5,6 @@ {{ categoryAlias + ": " }} {{ filterItemsAlias(categoryAlias) }} - @@ -44,6 +43,7 @@ input[type="checkbox"].css-checkbox { } input[type="checkbox"].css-checkbox + label.css-label { + text-transform: capitalize; padding-left: 25px; /* height: 24px; display: inline-block; */ diff --git a/src/components/face-category/FacetCategory.ts b/src/components/face-category/FacetCategory.ts index fe5c3ec..affe782 100644 --- a/src/components/face-category/FacetCategory.ts +++ b/src/components/face-category/FacetCategory.ts @@ -56,27 +56,7 @@ export default class FacetCategory extends Vue { * NOTE: This could be corrected directly in the index */ itemAlias(val: string): string { - // console.log("filterName:", this.filterName); - // return this.filterName == "datatype" ? "doctype" : this.filterName; - return this.replacements.get(val) || val; - - // switch (val) { - // case "gis": - // return "GIS"; - // case "analysisdata": - // return "Analysis Data"; - // case "models": - // return "Models"; - // case "monitoring": - // return "Monitoring"; - // case "measurementdata": - // return "Measurement Data"; - // case "mixedtype": - // return "Mixed Type"; - // default: - // return val; - // } } // get filterItems(): Array {