This commit is contained in:
DieMyst 2020-11-25 05:22:30 +03:00
parent 84b5a10a04
commit a80f3cf9e8
2 changed files with 3 additions and 3 deletions

View File

@ -8,6 +8,6 @@ instancesText num =
strNum = String.fromInt num strNum = String.fromInt num
in in
if num == 1 then if num == 1 then
Html.text (strNum ++ "instance") Html.text (strNum ++ " instance")
else else
Html.text (strNum ++ "instances") Html.text (strNum ++ " instances")

View File

@ -47,7 +47,7 @@ body model =
List.concat List.concat
[ [
[ header [ classes "w-100 bt bb b--black-10" ] [ routeView (Page "hub") ] ] ++ [ header [ classes "w-100 bt bb b--black-10" ] [ routeView (Page "hub") ] ] ++
[ header [ classes "w-100 bt bb b--black-10", onClick Click ] [ text "Fluence Network Dashboard" ] ] [ header [ classes "w-100 bt bb b--black-10", onClick Click ] [ text "GET SERVICES" ] ]
] ]