Skip to content

Commit

Permalink
Hack to make some items with missing english label or not appear
Browse files Browse the repository at this point in the history
See #45
  • Loading branch information
Jean-Baptiste RUDANT committed Nov 22, 2016
1 parent 375459e commit 01d4067
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/js/sparql/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,10 @@ const itemDetails = item => `
FILTER ( langMatches(lang(?content), "EN"))
}
FILTER (
langMatches(lang(?label), "EN") &&
langMatches(lang(?clLabel), "EN"))
# langMatches(lang(?label), "EN") &&
# langMatches(lang(?clLabel), "EN"))
# HACK english label missing http://classification-explorer.noknot.fr/classification/nafr2/sousClasse/23_69Z
langMatches(lang(?label), "EN"))
}
`

Expand Down

0 comments on commit 01d4067

Please sign in to comment.