Skip to content

Commit

Permalink
Fixed entrylist format
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime ROBIN committed Mar 4, 2021
1 parent 56eb12e commit 214b90d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.3.1 (2021-03-04)

- Added inverted grid from results file

# 0.3.0 (2021-03-04)

- Added inverted grid from results file

# 0.2.1 (2020-11-29)

- Fixed some cars name
Expand Down
2 changes: 1 addition & 1 deletion app/components/toolbar-comp.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
View Results
{{/paper-button}}
<span class="flex"></span>
v0.3.0
v0.3.1
{{/toolbar.tools}}
{{/paper-toolbar}}

Expand Down
3 changes: 2 additions & 1 deletion app/utils/results-to-entry-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const resultsToInvertedGrid = R.pipe(
R.pipe(R.length, addReversePosition),
R.identity
]),
R.applySpec({entries: {drivers: R.identity}})
R.map(R.objOf('drivers')),
R.objOf('entries')
);

export default resultsToInvertedGrid;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "acc-results-json-to-csv",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"description": "Import json with ACC bad formatting and export it to CSV",
"repository": "",
Expand Down

0 comments on commit 214b90d

Please sign in to comment.