Skip to content

Commit d3eabdf

Browse files
authored
Merge pull request #1588 from VEuPathDB/dataset-details-to-tsx
Convert UserDatasetDataset.jsx to tsx
2 parents 96d6b48 + 5a5105f commit d3eabdf

File tree

10 files changed

+320
-223
lines changed

10 files changed

+320
-223
lines changed

packages/libs/coreui/src/components/Mesa/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ export interface MesaColumn<
136136
moveable?: boolean;
137137
helpText?: string;
138138
style?: CSSProperties;
139+
headingStyle?: CSSProperties;
139140
className?: string;
140141
width?: CSSProperties['width'];
141142
getValue?: (props: { row: Row; index: number }) => Value;

packages/libs/user-datasets/src/lib/Components/Detail/BigwigDatasetDetail.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class BigwigDatasetDetail extends UserDatasetDetail {
265265
}
266266

267267
// See note in the base class, UserDatasetDetail
268-
/** @return {import("react").ReactNode[]} */
268+
/** @return {Array<() => (import("react").ReactElement | null)>} */
269269
getPageSections() {
270270
const [headerSection, fileSection] = super.getPageSections();
271271
return [

0 commit comments

Comments
 (0)