Commit 7d4298be authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] bug all selected but one.

parent b069e00a
...@@ -124,7 +124,7 @@ updateFilter org (Just (HAL_IMT {imtOrgs})) = ...@@ -124,7 +124,7 @@ updateFilter org (Just (HAL_IMT {imtOrgs})) =
then then
if org == All_IMT if org == All_IMT
then Set.empty then Set.empty
else Set.delete org imtOrgs else Set.delete All_IMT $ Set.delete org imtOrgs
else else
if org == All_IMT if org == All_IMT
then Set.fromFoldable allIMTorgs then Set.fromFoldable allIMTorgs
...@@ -208,7 +208,7 @@ searchInput (term /\ setTerm) = ...@@ -208,7 +208,7 @@ searchInput (term /\ setTerm) =
, className: "form-control" , className: "form-control"
, type: "text" , type: "text"
, on: { change : \e -> setTerm $ const $ e .. "target" .. "value" } , on: { change : \e -> setTerm $ const $ e .. "target" .. "value" }
, placenolder: "Your Query here" } , placeholder: "Your Query here" }
] ]
......
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