diff --git a/ChangeLog.md b/ChangeLog.md index 95259d6..48daafd 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 diff --git a/src/Mtlstats/Report.hs b/src/Mtlstats/Report.hs index 913e2c8..5de3b9e 100644 --- a/src/Mtlstats/Report.hs +++ b/src/Mtlstats/Report.hs @@ -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