Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dad
FFDS-register-front
Commits
8812e36d
Commit
8812e36d
authored
Sep 28, 2020
by
Administrator
Browse files
list dataset description in search page width filter
parent
1d8fbc65
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/app/search/search.component.html
View file @
8812e36d
...
...
@@ -12,7 +12,7 @@
<tbody>
<tr
*ngFor=
"let item of xmlItems"
>
<td>
{{item.title.value}}
</td>
<td>
{{item.description.value}}
</td>
<td>
{{item.description.value}}
</td>
</tr>
</tbody>
</table>
...
...
src/app/search/search.component.ts
View file @
8812e36d
...
...
@@ -40,7 +40,9 @@ SELECT ?title ?description\n\
where {
\n\
?dataset a dcat:Dataset ;
\n\
dcterms:title ?title ;
\n\
dcterms:description ?description.
\n\
dcterms:description ?description
\n\
FILTER (contains( ?description, "Northern") || contains( ?title, "Northern"))
\n\
.
\n\
}
'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment