Adding EntityType in feeds updates. (#1742)

This commit is contained in:
Sachin Chaurasiya 2021-12-14 15:46:39 +05:30 committed by GitHub
parent af564961ef
commit 6825a8c54a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ const RecentSearchedTerms: FunctionComponent = () => {
return (
<>
<h6 className="tw-heading tw-mb-3" data-testid="filter-heading">
Recently Searched Terms
Recent Search Terms
</h6>
{recentlySearchedTerms.length ? (
recentlySearchedTerms.map((item, index) => {
@ -48,7 +48,7 @@ const RecentSearchedTerms: FunctionComponent = () => {
position="top"
size="regular"
trigger="mouseenter">
{item.term.slice(0, 20)}...
<span>{item.term.slice(0, 20)}...</span>
</PopOver>
) : (
item.term

View File

@ -60,7 +60,7 @@ const FeedCards: FC<FeedCardsProp> = ({
<h6 className="tw-flex tw-items-center tw-m-0 tw-heading tw-pl-2">
{feed.updatedBy}
<span className="tw-pl-1 tw-font-normal">
updated{' '}
updated {feed.entityType}{' '}
<Link to={getEntityLink(feed.entityType, feed.fqn)}>
<span className="link-text">{feed.entityName}</span>
</Link>