diff --git a/src/Main.elm b/src/Main.elm index 52b384a8209851e5e459534260e1503c850b0a39..25f97bd9cfbe730a64c8fa0afc15e52d761981be 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -170,14 +170,14 @@ viewNav ( global, _ ) = , div [ Html.Attributes.class "navbar-view-icons" ] [ button [ activeClass MapView |> Html.Attributes.class, ViewChange MapView |> onClick ] [ i [ Html.Attributes.class "fa-solid fa-map fa-xl" ] [] ] - , button [ activeClass DataTable |> Html.Attributes.class, ViewChange DataTable |> onClick ] - [ i [ Html.Attributes.class "fa-solid fa-table fa-xl" ] [] ] , button [ activeClass ForceDirectedGraph |> Html.Attributes.class, ViewChange ForceDirectedGraph |> onClick ] [ i [ Html.Attributes.class "fa-solid fa-hexagon-nodes fa-xl" ] [] ] , button [ activeClass BarPlot |> Html.Attributes.class, ViewChange BarPlot |> onClick ] [ i [ Html.Attributes.class "fa-solid fa-chart-simple fa-xl" ] [] ] , button [ activeClass LinePlot |> Html.Attributes.class, ViewChange LinePlot |> onClick ] [ i [ Html.Attributes.class "fa-solid fa-chart-line fa-xl" ] [] ] + , button [ activeClass DataTable |> Html.Attributes.class, ViewChange DataTable |> onClick ] + [ i [ Html.Attributes.class "fa-solid fa-table fa-xl" ] [] ] ] ]