Merge pull request #41 from mtlstats/bugfix
bugfix: removed quotation makrks from goalie name in report
This commit is contained in:
commit
cc495fa589
|
@ -1,5 +1,8 @@
|
||||||
# Changelog for mtlstats
|
# Changelog for mtlstats
|
||||||
|
|
||||||
|
## current
|
||||||
|
- Bugfix: removed quotation marks from goalie names in report
|
||||||
|
|
||||||
## 0.7.0
|
## 0.7.0
|
||||||
- Shortened views to fit within 25 lines
|
- Shortened views to fit within 25 lines
|
||||||
- Implemented goalie reports
|
- Implemented goalie reports
|
||||||
|
|
|
@ -240,7 +240,7 @@ goalieReport width goalieData = let
|
||||||
body = map
|
body = map
|
||||||
(\(goalie, stats) ->
|
(\(goalie, stats) ->
|
||||||
[ CellText $ show (goalie^.gNumber) ++ " "
|
[ CellText $ show (goalie^.gNumber) ++ " "
|
||||||
, CellText $ show $ goalie^.gName
|
, CellText $ goalie^.gName
|
||||||
] ++ rowCells stats)
|
] ++ rowCells stats)
|
||||||
goalieData
|
goalieData
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user