diff --git a/src/Utils/Utils.elm b/src/Utils/Utils.elm index fbee5dc..d082413 100644 --- a/src/Utils/Utils.elm +++ b/src/Utils/Utils.elm @@ -8,6 +8,6 @@ instancesText num = strNum = String.fromInt num in if num == 1 then - Html.text (strNum ++ "instance") + Html.text (strNum ++ " instance") else - Html.text (strNum ++ "instances") + Html.text (strNum ++ " instances") diff --git a/src/View.elm b/src/View.elm index 2d31b4e..f57bca4 100644 --- a/src/View.elm +++ b/src/View.elm @@ -47,7 +47,7 @@ body model = List.concat [ [ 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" ] ] ]