Skip to content

Commit

Permalink
added tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarika-padmanaban committed Jul 30, 2024
1 parent f0283c7 commit f80661a
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/ui/pages/container/Dataset/CreateNewDatasetInstance.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,20 @@ const CollectionProject = (props) => {
xl={12}
>

<Typography gutterBottom component="div">
<Tooltip
title="Parent Data (A reference to database object referenced by integer ID field) - The parent data item id of this record. When a single sentence in a particular language is to be translated into another language, the source data item id is used as a 'Parent Data' and a separate child conversation data item is created for each language for which the source data item is to be translated into."
placement="right"
>
<span>Parent_Instance_Id:</span>
</Tooltip>
</Typography>

<Grid item xs={4} md={4} lg={4} xl={4} sm={4}>
<div style={{ display: 'flex', alignItems: 'center' }}>
<Typography gutterBottom component="div">
Parent_Instance_Id:
</Typography>
<Tooltip
arrow
title="Parent Data (A reference to database object referenced by integer ID field) - The parent data item id of this record. When a single sentence in a particular language is to be translated into another language, the source data item id is used as a 'Parent Data' and a separate child conversation data item is created for each language for which the source data item is to be translated into."
placement="right"
>
<Info style={{ marginBottom: "5px", cursor: 'pointer', color: "grey" }} />
</Tooltip>
</div>
</Grid>

</Grid>
<Grid item xs={12} md={12} lg={12} xl={12} sm={12}>
Expand Down

0 comments on commit f80661a

Please sign in to comment.