Skip to content

Commit

Permalink
Update ui/apps/dashboard/src/app/(organization-active)/(dashboard)/en…
Browse files Browse the repository at this point in the history
…v/[environmentSlug]/functions/[slug]/runs/RunsTable.tsx

Co-authored-by: Aaron Harper <aaron@inngest.com>
  • Loading branch information
anafilipadealmeida and goodoldneon committed Apr 29, 2024
1 parent 7e0fefa commit ca3f389
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ export type Run = {
endedAt: string;
};

type RunsTableProps<TData> = {
type RunsTableProps = {
data: Run[] | undefined;
sorting?: SortingState;
setSorting?: OnChangeFn<SortingState>;
isLoading?: boolean;
renderSubComponent: (props: { id: string }) => React.ReactElement;
getRowCanExpand: (row: Row<TData>) => boolean;
getRowCanExpand: (row: Row<Run>) => boolean;
};

export default function RunsTable({
Expand Down

0 comments on commit ca3f389

Please sign in to comment.