Merge pull request #41 from mtlstats/bugfix

bugfix: removed quotation makrks from goalie name in report
This commit is contained in:
Jonathan Lamothe 2019-11-29 20:20:06 -05:00 committed by GitHub
commit cc495fa589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# Changelog for mtlstats
## current
- Bugfix: removed quotation marks from goalie names in report
## 0.7.0
- Shortened views to fit within 25 lines
- Implemented goalie reports

View File

@ -240,7 +240,7 @@ goalieReport width goalieData = let
body = map
(\(goalie, stats) ->
[ CellText $ show (goalie^.gNumber) ++ " "
, CellText $ show $ goalie^.gName
, CellText $ goalie^.gName
] ++ rowCells stats)
goalieData