Skip to content

Commit

Permalink
Get test green again after rebasing from master (server still red)
Browse files Browse the repository at this point in the history
  • Loading branch information
msp committed Oct 20, 2017
1 parent 335f35c commit 4ce9f6f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Data/DataSource.elm
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ defaultAttributes =

init : DataSource
init =
DataSource "?" "unknown"
DataSource (UUID.UUID "?") "unknown"


toChannel : DataSource -> String
toChannel dataSource =
"dataSource:" ++ dataSource.name ++ ":" ++ dataSource.uuid
"dataSource:" ++ dataSource.name ++ ":" ++ (UUID.slugToString <| dataSource.uuid)
2 changes: 1 addition & 1 deletion src/Data/Widget.elm
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ bodyDecoder =
Decode.map Body Decode.string


primaryDataSource : Widget a -> DataSource
primaryDataSource : Widget -> DataSource
primaryDataSource widget =
List.head widget.dataSources |> Maybe.withDefault DataSource.init
2 changes: 1 addition & 1 deletion src/Views/Widget/Renderers/HeatMap.elm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Visualization.Axis as Axis exposing (defaultOptions)
import Visualization.Scale as Scale exposing (BandConfig, BandScale, ContinuousScale, defaultBandConfig)


render : Widget Body -> Table.Data -> Html msg
render : Widget -> Table.Data -> Html msg
render widget data =
case widget.adapter of
HEAT_MAP ->
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Widget/Renderers/LineChart.elm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import Visualization.Scale as Scale exposing (BandConfig, BandScale, ContinuousS
import Visualization.Shape as Shape


render : Widget Body -> Table.Data -> Html msg
render : Widget -> Table.Data -> Html msg
render widget data =
case widget.adapter of
TABLE ->
Expand Down

0 comments on commit 4ce9f6f

Please sign in to comment.