dbpedia / databus

A digital factory platform for managing files online with stable IDs, high-quality metadata, powerful API and tools for building on data: find, access, make interoperable, re-use
Apache License 2.0
36 stars 16 forks source link

Duplicates in search facets #182

Open JonathanJustavino opened 3 days ago

JonathanJustavino commented 3 days ago

Artifact section displays only a subset of the available artifacts and sometime displays duplicates.

Potential bug here in facets-view.js at line 144 uriToName cuts off part of the artifact name when there is a "." in the artifact name

  // Fix artifact facet values for groups, change URIs into artifact names
      var artifactFacetData = ctrl.facetsData[DatabusUris.DATABUS_ARTIFACT_PROPERTY];

      if (artifactFacetData != null) {
        for (var i in artifactFacetData.values) {
          artifactFacetData.values[i] = DatabusUtils.uriToName(artifactFacetData.values[i]);
        }
      }

image_720