Skip to content

Commit

Permalink
Format changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
vgeorge committed Nov 21, 2024
1 parent 32bbf8c commit 903807f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 9 additions & 3 deletions app/scripts/components/data-catalog/container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ export default function DataCatalogContainer() {

return (
<PageMainContent>
<LayoutProps title='Data Catalog' description={getString('dataCatalogBanner').other} />
<PageHero title='Data Catalog' description={getString('dataCatalogBanner').other} />
<LayoutProps
title='Data Catalog'
description={getString('dataCatalogBanner').other}
/>
<PageHero
title='Data Catalog'
description={getString('dataCatalogBanner').other}
/>
<FeaturedDatasets />
<CatalogView
datasets={allDatasets}
Expand All @@ -39,4 +45,4 @@ export default function DataCatalogContainer() {
/>
</PageMainContent>
);
}
}
8 changes: 6 additions & 2 deletions app/scripts/components/stories/hub/hub-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ import {
} from '$components/common/fold';
import { useSlidingStickyHeaderProps } from '$components/common/layout-root/useSlidingStickyHeaderProps';
import { Card } from '$components/common/card';
import { CardListGrid, CardMeta, CardTopicsList } from '$components/common/card/styles';
import {
CardListGrid,
CardMeta,
CardTopicsList
} from '$components/common/card/styles';
import EmptyHub from '$components/common/empty-hub';
import { prepareDatasets } from '$components/common/catalog/prepare-datasets';

Expand Down Expand Up @@ -183,7 +187,7 @@ export default function HubContent(props: HubContentProps) {
linkLabel='View more'
linkProperties={{
...linkProperties,
linkTo: `${d.asLink?.url ?? d.path}`,
linkTo: `${d.asLink?.url ?? d.path}`
}}
title={
<TextHighlight value={search} disabled={search.length < 3}>
Expand Down

0 comments on commit 903807f

Please sign in to comment.