Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #219 from marius-patrascu/show-origin-information
Browse files Browse the repository at this point in the history
added search results origin information
  • Loading branch information
sarbull authored Aug 6, 2021
2 parents d9f76bb + 82dd669 commit 18da645
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions new/asset-catalog/egeria-asset-details.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ class EgeriaAssetDetails extends mixinBehaviors([EgeriaItemUtilsBehavior], Polym
title="Type"
with-row-stripes ></egeria-props-table>
<egeria-props-table items="[[ _attributes(item.origin) ]]"
title="Origin"
with-row-stripes ></egeria-props-table>
<template is="dom-if" if="[[ _hasKeys(item.additionalProperties) ]]">
<egeria-props-table items="[[ _attributes(item.additionalProperties) ]]"
title="Additional Properties"
Expand Down
8 changes: 8 additions & 0 deletions new/asset-catalog/egeria-asset-search.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,14 @@ class EgeriaAssetSearch extends PolymerElement {
</template>
</vaadin-grid-column>
<vaadin-grid-column width="15%" resizable>
<template class="header">
<div><vaadin-grid-sorter path="origin.metadataCollectionName">Origin</vaadin-grid-sorter></div>
<div><vaadin-grid-filter path="origin.metadataCollectionName"></vaadin-grid-filter></div>
</template>
<template>[[ item.origin.metadataCollectionName ]]</template>
</vaadin-grid-column>
<vaadin-grid-column width="10%" resizable>
<template class="header">
<div><vaadin-grid-sorter path="type.name">Type</vaadin-grid-sorter></div>
Expand Down

0 comments on commit 18da645

Please sign in to comment.