Skip to content

Commit

Permalink
add feature column names on datasets modal
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleguido committed Dec 12, 2024
1 parent ab1d96b commit 0fe49e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/DatasetsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import DatasetCard from "./DatasetCard"
import { useBrowserStore, usePersistentStore } from "../store"
import { BrowserViewLogin } from "../constants"
import MarkdownSnippet from "./MarkdownSnippet"
import { DocStar, MediaImage } from "iconoir-react"

export type DatasetModalProps = {
title?: string
Expand Down Expand Up @@ -158,7 +159,7 @@ const DatasetModal: React.FC<DatasetModalProps> = ({
>
{user ? userPlan : "(guest)"}
</div>
<div className="very-small mt-2 muted">
<div className="very-small mt-2 mb-2 muted">
{user ? (
"Discover Available Datasets according to your plan"
) : (
Expand All @@ -175,6 +176,17 @@ const DatasetModal: React.FC<DatasetModalProps> = ({
)}
</div>
</Col>
<Col sm={{ offset: 9, span: 1 }}>
<div className="very-small">Explore in Impresso App</div>
</Col>
<Col sm={1}>
<DocStar />
<div className="very-small">Export transcripts</div>
</Col>
<Col sm={1}>
<MediaImage />
<div className="very-small">Export illustrations</div>
</Col>
<Col sm={12}>
<div className="border-dark pt-3 border-bottom h-1px"></div>
</Col>
Expand Down

0 comments on commit 0fe49e6

Please sign in to comment.