Skip to content
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

Rework data nodes #356

Merged
merged 15 commits into from
May 29, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
small fixes for Fable compatability
  • Loading branch information
HLWeil committed May 10, 2024
commit bc7d9521a25497c5731e4c8fd2dc6b9b0e99d810
2 changes: 1 addition & 1 deletion src/Core/Table/CompositeCell.fs
Original file line number Diff line number Diff line change
@@ -164,6 +164,6 @@ type CompositeCell =
static member unitized (v:string, oa:OntologyAnnotation) = CompositeCell.Unitized(v, oa)

//[<CompiledName("Data")>]
static member data (d:Process.Data) = CompositeCell.Data(d)
static member data (d:Data) = CompositeCell.Data(d)
#else
#endif
3 changes: 2 additions & 1 deletion src/Spreadsheet/AnnotationTable/ArcTable.fs
Original file line number Diff line number Diff line change
@@ -74,7 +74,8 @@ let groupColumnsByHeader (columns : list<FsColumn>) =
columns
|> Aux.List.groupWhen (fun c ->
let v = c.[1].ValueAsString()
List.exists (fun s -> v.StartsWith s) helperColumnStrings
helperColumnStrings
|> List.exists (fun s -> v.StartsWith s)
|> not
)

Loading