Jakob Demler

Results 5 issues of Jakob Demler

With this commit server groups have their own view. That is: for any given metric the charts for all the servers of a group is shown. Example: ![Example](https://user-images.githubusercontent.com/12686782/29244762-2b71cac8-7fc1-11e7-95f5-bce8ba935d50.png)

in elm 0.19: ```elm isMinusOne : Int -> Bool isMinusOne val = case val of -1 -> True _ -> False ``` Results in: ``` parse error Line 4, Column...

This worked for the old `html` package. Just documenting the change so that no one trips over it, as the compiler just runs with it and there are no runtime-errors...

With elm 0.18 input fields where buggy: when their value was set in the view, the change would not be reflected in the DOM correctly. To fix this, `textKeys` where...

The new style-elements still allows `Style.styleSheetWith` to be called with a list of options. The only way to make an option though was `Style.unguarded`. This function was commented out, but...