diff --git a/src/App/Page/Navigation.purs b/src/App/Page/Navigation.purs index 32624e1..cb768f7 100644 --- a/src/App/Page/Navigation.purs +++ b/src/App/Page/Navigation.purs @@ -27,7 +27,7 @@ data Output = Log LogMessage -- | Once someone clicks on a routing button, `App.Container` needs to know. | Routing Page - -- | Once someone clicks on a the Disconnection button, `App.Container` needs to know. + -- | Once someone clicks on a the Logout button, `App.Container` needs to know. | Disconnection -- | The component needs to know when the user is logged or not. @@ -168,7 +168,7 @@ render { logged, active, admin, login } = render_login Nothing = [] render_login (Just l)= [nav_link ("logged as " <> l) (Navigate Setup)] link_disconnection = - nav_link_ [C.has_text_light, C.has_background_danger] "Disconnection" UnLog + nav_link_ [C.has_text_light, C.has_background_danger] "Log out" UnLog dropdown title dropdown_elements = HH.div [HP.classes [C.navbar_item, C.has_dropdown, C.is_hoverable]]