From 9c5d166f31348efb0d70e0e01417cf71d649f2f8 Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Fri, 29 Nov 2019 20:12:45 -0500 Subject: [PATCH] bugfix: removed quotation makrks from goalie name in report --- ChangeLog.md | 3 +++ src/Mtlstats/Report.hs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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