Commit 11d6995a authored by Sudhir Kumar's avatar Sudhir Kumar

merged changes

parent f58560ea
...@@ -139,8 +139,8 @@ instance decodeResponse :: DecodeJson Response where ...@@ -139,8 +139,8 @@ instance decodeResponse :: DecodeJson Response where
filterSpec :: forall state props action. Spec state props action filterSpec :: forall state props action. Spec state props action
filterSpec = simpleSpec defaultPerformAction render filterSpec = simpleSpec defaultPerformAction render
where where
render d p s c = [div [ className "col-md-2"] [ text " Filter " render d p s c = [div [ className "col-md-2", style {textAlign : "center", marginLeft : "0px", paddingLeft : "0px"}] [ text " Filter "
, input [className "form-control"] , input [className "form-control", placeholder "Filter here"]
]] ]]
docViewSpec :: Spec {} Props Void docViewSpec :: Spec {} Props Void
...@@ -170,8 +170,11 @@ layoutDocview = simpleSpec performAction render ...@@ -170,8 +170,11 @@ layoutDocview = simpleSpec performAction render
render :: Render State Props Action render :: Render State Props Action
render dispatch {nodeId, tabType, totalRecords, chart} _ _ = render dispatch {nodeId, tabType, totalRecords, chart} _ _ =
[ p [] [] [ br'
, div [ style {textAlign : "center"}] [input [placeholder "Filter here"]] , div [ style {textAlign : "center"}] [ text " Filter "
, input [className "form-control", style {width : "120px", display : "inline-block"}, placeholder "Filter here"]
]
, p [] [text ""]
, br' , br'
, div [className "container1"] , div [className "container1"]
[ div [className "row"] [ div [className "row"]
......
...@@ -25,7 +25,7 @@ endConfig = endConfig' V10 ...@@ -25,7 +25,7 @@ endConfig = endConfig' V10
endConfig' :: ApiVersion -> EndConfig endConfig' :: ApiVersion -> EndConfig
endConfig' v = { front : frontRelative endConfig' v = { front : frontRelative
, back : backLocal v } , back : backDev v }
------------------------------------------------------------------------ ------------------------------------------------------------------------
frontRelative :: Config frontRelative :: Config
......
This diff is collapsed.
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