Skip to content

Commit

Permalink
Fixed datset breadcrumb icons size
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucano Vera committed Aug 14, 2024
1 parent 3e16c05 commit 99bbd6c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions clients/admin-ui/src/pages/dataset/[id]/[urn].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const FieldsDetailPage: NextPage = () => {
breadcrumbs={[
{
title: "All datasets",
icon: <DatabaseIcon />,
icon: <DatabaseIcon boxSize={4} />,
link: DATASET_ROUTE,
},
{
Expand All @@ -230,11 +230,11 @@ const FieldsDetailPage: NextPage = () => {
pathname: DATASET_DETAIL_ROUTE,
query: { id: datasetId },
},
icon: <DatasetIcon />,
icon: <DatasetIcon boxSize={5} />,
},
{
title: collectionName,
icon: <TableIcon />,
icon: <TableIcon boxSize={5} />,
},
]}
/>
Expand Down
4 changes: 2 additions & 2 deletions clients/admin-ui/src/pages/dataset/[id]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ const DatasetDetailPage: NextPage = () => {
breadcrumbs={[
{
title: "All datasets",
icon: <DatabaseIcon />,
icon: <DatabaseIcon boxSize={4} />,
link: DATASET_ROUTE,
},
{
title: datasetId,
icon: <DatasetIcon />,
icon: <DatasetIcon boxSize={5} />,
},
]}
/>
Expand Down
4 changes: 3 additions & 1 deletion clients/admin-ui/src/pages/dataset/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ const DataSets: NextPage = () => {
}
>
<DatasetBreadcrumbs
breadcrumbs={[{ title: "All datasets", icon: <DatabaseIcon /> }]}
breadcrumbs={[
{ title: "All datasets", icon: <DatabaseIcon boxSize={4} /> },
]}
fontSize="md"
fontWeight="normal"
mb={5}
Expand Down

0 comments on commit 99bbd6c

Please sign in to comment.