Skip to content

feat: update documentation link for nih tutorial button (#4101) #4106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { GridPaper } from "@databiosphere/findable-ui/lib/components/common/Paper/paper.styles";
import { Table } from "@databiosphere/findable-ui/lib/components/Detail/components/Table/table";
import { ColumnDef } from "@tanstack/react-table";
import { ColumnDef, RowData } from "@tanstack/react-table";
import { Dispatch, SetStateAction, useEffect } from "react";
import {
HCA_DCP_CATEGORY_KEY,
Expand All @@ -23,7 +23,10 @@ export interface ArchivePreviewTableProps {
* Builds the table column definition model for the archive preview table.
* @returns archive preview table column definition.
*/
function getArchivePreviewTableColumns<T extends object>(): ColumnDef<T>[] {
function getArchivePreviewTableColumns<
T extends RowData,
TData = unknown
>(): ColumnDef<T, TData>[] {
return [
{
accessorKey: HCA_DCP_CATEGORY_KEY.FILE_NAME,
Expand Down
4 changes: 2 additions & 2 deletions explorer/app/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ export { ManifestDownloadEntity } from "@databiosphere/findable-ui/lib/component
export { ManifestDownloadForm } from "@databiosphere/findable-ui/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm";
export { ManifestDownload } from "@databiosphere/findable-ui/lib/components/Export/components/ManifestDownload/manifestDownload";
export { AzulFileDownload } from "@databiosphere/findable-ui/lib/components/Index/components/AzulFileDownload/azulFileDownload";
export { Cell } from "@databiosphere/findable-ui/lib/components/Index/components/Cell/cell";
export { Summaries } from "@databiosphere/findable-ui/lib/components/Index/components/Hero/components/Summaries/summaries";
export { NTagCell } from "@databiosphere/findable-ui/lib/components/Index/components/NTagCell/nTagCell";
export {
BackPageContentMainColumn,
BackPageContentSideColumn,
Expand All @@ -77,6 +75,8 @@ export { Details } from "@databiosphere/findable-ui/lib/components/Project/compo
export { Publications } from "@databiosphere/findable-ui/lib/components/Project/components/Publications/publications";
export { SupplementaryLinks } from "@databiosphere/findable-ui/lib/components/Project/components/SupplementaryLinks/supplementaryLinks";
export { SupportRequest } from "@databiosphere/findable-ui/lib/components/Support/components/SupportRequest/supportRequest";
export { BasicCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/BasicCell/basicCell";
export { NTagCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/NTagCell/nTagCell";
export { ExportMethodView } from "@databiosphere/findable-ui/lib/views/ExportMethodView/exportMethodView";
export { Announcements } from "./common/Banner/components/Announcements/announcements";
export { ButtonOutline } from "./common/Button/components/ButtonOutline/buttonOutline";
Expand Down
Loading
Loading