diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/webapps/bogenherr/clojurescript/bogenherr/src/core.cljs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/webapps/bogenherr/clojurescript/bogenherr/src/core.cljs b/lisp/webapps/bogenherr/clojurescript/bogenherr/src/core.cljs index d71243f..57b4504 100644 --- a/lisp/webapps/bogenherr/clojurescript/bogenherr/src/core.cljs +++ b/lisp/webapps/bogenherr/clojurescript/bogenherr/src/core.cljs @@ -602,8 +602,9 @@ (let [jsonobj (js->clj (js/JSON.parse response))] (auth-notifications jsonobj) (dommy/set-html! (dommy/sel1 :#modify-title) - (cond (= (@nav-state :about-us-category) "lessons") "About the Studio - Modify" - (= (@nav-state :about-us-category) "lessons") "For Hire - Modify")) + (str (cond (= (@nav-state :about-us-category) "lessons") "About the Studio" + (= (@nav-state :about-us-category) "gigs") "For Hire") + " - Modify")) (dommy/set-html! (dommy/sel1 :#modify-body) (template-about-us-modify jsonobj)) (.modal (jquery "#modify")))) |
