bugfix: removed quotation makrks from goalie name in report

This commit is contained in:
Jonathan Lamothe 2019-11-29 20:12:45 -05:00
parent a9e12d11a9
commit 9c5d166f31
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