Commit 6669b263 authored by Alexandre Delanoë's avatar Alexandre Delanoë
parents 45f78759 141fc8b1
...@@ -34,7 +34,8 @@ performAction (ChangeString ps) _ _ = pure unit ...@@ -34,7 +34,8 @@ performAction (ChangeString ps) _ _ = pure unit
performAction (ChangeAnotherString ps) _ _ = pure unit performAction (ChangeAnotherString ps) _ _ = pure unit
performAction (SetInput ps) _ _ = pure unit performAction (SetInput ps) _ _ = void do
modifyState \( state) -> state { inputValue = ps }
...@@ -59,9 +60,9 @@ docview = simpleSpec performAction render ...@@ -59,9 +60,9 @@ docview = simpleSpec performAction render
[ [
nav [ ] nav [ ]
[ div [className "nav nav-tabs", _id "nav-tab",role "tablist"] [ div [className "nav nav-tabs", _id "nav-tab",role "tablist"]
[ a [className "nav-item nav-link active",_id "nav-home-tab" , _data {toggle : "tab"},href "#nav-home" ,role "tab",aria {controls : "nav-home"} ,aria {selected:true}] [ text "Publications (12)"] [ a [className "nav-item nav-link active",_id "nav-home-tab" , _data {toggle : "tab"},href "#nav-home" ,role "tab",aria {controls : "nav-home"} ,aria {selected:true}] [ text "STOPLIST"]
, a [className "nav-item nav-link" ,_id "nav-profile-tab", _data {toggle : "tab"},href "#nav-profile",role "tab",aria {controls : "nav-profile"},aria {selected:true}] [ text "Brevets (2)"] , a [className "nav-item nav-link" ,_id "nav-profile-tab", _data {toggle : "tab"},href "#nav-profile",role "tab",aria {controls : "nav-profile"},aria {selected:true}] [ text "MAINLIST"]
, a [className "nav-item nav-link" ,_id "nav-contact-tab", _data {toggle : "tab"},href "#nav-contact",role "tab",aria {controls : "nav-contact"},aria {selected:true}] [ text "Projets (5)"] , a [className "nav-item nav-link" ,_id "nav-contact-tab", _data {toggle : "tab"},href "#nav-contact",role "tab",aria {controls : "nav-contact"},aria {selected:true}] [ text "MAPLIST"]
] ]
] ]
......
...@@ -465,7 +465,7 @@ showRow :: {row :: Corpus, delete :: Boolean} -> ReactElement ...@@ -465,7 +465,7 @@ showRow :: {row :: Corpus, delete :: Boolean} -> ReactElement
showRow {row : (Corpus c), delete} = showRow {row : (Corpus c), delete} =
tr [] tr []
[ td [] [text c.date] [ td [] [text c.date]
, td [] [text c.title] , td [] [ a [ href "#/documentView/1"] [ text c.title ] ]
, td [] [text c.source] , td [] [text c.source]
, td [] [div [className $ fa <> "fa-star"][]] , td [] [div [className $ fa <> "fa-star"][]]
, td [] [input [ _type "checkbox"] []] , td [] [input [ _type "checkbox"] []]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment