Cleaner logs.
parent
de039e5e6c
commit
45931a37f7
|
@ -10,7 +10,7 @@
|
||||||
-}
|
-}
|
||||||
module App.Page.Administration where
|
module App.Page.Administration where
|
||||||
|
|
||||||
import Prelude (Unit, bind, discard, not, pure, show, ($), (<<<), (<>), (=<<), map, (/=), (==))
|
import Prelude (Unit, bind, discard, not, pure, show, ($), (<<<), (<>), (=<<), map, (/=), (==), unit)
|
||||||
import Data.Eq (class Eq)
|
import Data.Eq (class Eq)
|
||||||
|
|
||||||
import Bulma as Bulma
|
import Bulma as Bulma
|
||||||
|
@ -201,7 +201,7 @@ handleAction = case _ of
|
||||||
sessionstorage <- H.liftEffect $ Window.sessionStorage =<< HTML.window
|
sessionstorage <- H.liftEffect $ Window.sessionStorage =<< HTML.window
|
||||||
old_tab <- H.liftEffect $ Storage.getItem "current-ada-tab" sessionstorage
|
old_tab <- H.liftEffect $ Storage.getItem "current-ada-tab" sessionstorage
|
||||||
case old_tab of
|
case old_tab of
|
||||||
Nothing -> H.raise $ Log $ ErrorLog "We hadn't changed tab before reload apparently."
|
Nothing -> pure unit
|
||||||
Just current_tab -> case current_tab of
|
Just current_tab -> case current_tab of
|
||||||
"Home" -> handleAction $ ChangeTab Home
|
"Home" -> handleAction $ ChangeTab Home
|
||||||
"Search" -> handleAction $ ChangeTab Search
|
"Search" -> handleAction $ ChangeTab Search
|
||||||
|
|
Loading…
Reference in New Issue