Commit 685494e9 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] strict types

parent e87b4662
...@@ -25,8 +25,8 @@ data Chart = ChartHisto | ChartScatter | ChartPie ...@@ -25,8 +25,8 @@ data Chart = ChartHisto | ChartScatter | ChartPie
deriving (Generic) deriving (Generic)
-- TODO use UTCTime -- TODO use UTCTime
data Histo = Histo { histo_dates :: [Text] data Histo = Histo { histo_dates :: ![Text]
, histo_count :: [Int] , histo_count :: ![Int]
} }
deriving (Show, Generic) deriving (Show, Generic)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment