File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
column-components/src/notes Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -227,8 +227,7 @@ function NotesColumn(props: NotesColumnProps) {
227227}
228228
229229interface NotesColumnProps
230- extends FocusedNotesColumnProps ,
231- EditableNotesColumnProps {
230+ extends FocusedNotesColumnProps , EditableNotesColumnProps {
232231 editable ?: boolean ;
233232}
234233
Original file line number Diff line number Diff line change @@ -52,8 +52,10 @@ import { ScaleContinuousNumeric } from "d3-scale";
5252
5353const h = hyperStyled ( styles ) ;
5454
55- interface BaseColumnProps
56- extends Omit < SectionSharedProps , "unconformityLabels" > {
55+ interface BaseColumnProps extends Omit <
56+ SectionSharedProps ,
57+ "unconformityLabels"
58+ > {
5759 className ?: string ;
5860 showLabelColumn ?: boolean ;
5961 keyboardNavigation ?: boolean ;
@@ -73,9 +75,7 @@ interface BaseColumnProps
7375export type UnconformityLabelPlacement = "minimal" | "prominent" | "none" ;
7476
7577export interface ColumnProps
76- extends Padding ,
77- BaseColumnProps ,
78- ColumnHeightScaleOptions {
78+ extends Padding , BaseColumnProps , ColumnHeightScaleOptions {
7979 // Macrostrat units
8080 units : UnitLong [ ] ;
8181 t_age ?: number ;
Original file line number Diff line number Diff line change @@ -84,8 +84,9 @@ export function finalizeSectionHeights<T extends UnitLong>(
8484 } ;
8585}
8686
87- export interface SectionInfoWithScale < T extends UnitLong = ExtUnit >
88- extends SectionInfo < T > {
87+ export interface SectionInfoWithScale <
88+ T extends UnitLong = ExtUnit ,
89+ > extends SectionInfo < T > {
8990 scaleInfo : PackageScaleInfo ;
9091}
9192
You can’t perform that action at this time.
0 commit comments