-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filter SampleMetadata and Tempo fields on Samples page via tabs (#139)
* Group SampleMetadata and Tempo fields under parent columns * Remove parent columns and add view tabs to Samples page * Make the Samples tabs a UI input to the generic SamplesList component * Add activeness indicator to the Samples tabs * Update Sample tabs and add a info tooltip
- Loading branch information
Showing
5 changed files
with
79 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Tooltip } from "@material-ui/core"; | ||
import InfoIcon from "@material-ui/icons/InfoOutlined"; | ||
|
||
export function InfoToolTip({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<Tooltip title={<span style={{ fontSize: 12 }}>{children}</span>}> | ||
<InfoIcon style={{ fontSize: 18, color: "grey" }} /> | ||
</Tooltip> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters