Skip to content
Open
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
4 changes: 1 addition & 3 deletions src/GitHubHealth-Model-Importer/GithubModelImporter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ GithubModelImporter >> configureReaderForPipeline: reader [
reader
for: GLHPipeline
do: [ :mapping | "mapping mapInstVar: #status to: #conclusion."

(mapping mapInstVar: #created_at) valueSchema: DateAndTime.
(mapping mapInstVar: #updated_at) valueSchema: DateAndTime.

Expand All @@ -286,8 +285,7 @@ GithubModelImporter >> configureReaderForPipeline: reader [
mapProperty: #conclusion
getter: [ :object | #ignore ]
setter: [ :object :value |
(object status isNil and: [ value isNotNil ]) ifTrue: [
object status: value ] ].
value ifNotNil: [ object status: value ] ].

mapping
mapProperty: #run_started_at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ GLHGroupVisualization >> forGroup: aGLHGroups [
canvas: c;
shapes: c nodes;
connectFrom: #group.
RSHorizontalVanDerPloegTreeLayout new on: c nodes.
RSHorizontalTreeLayout new on: c nodes.

legend := self createLegend.
legend container: c.
Expand Down
Loading