mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-25 05:41:57 +00:00
Fix conditional
This commit is contained in:
parent
f44ddcb928
commit
5683f48d97
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ block content
|
||||||
br
|
br
|
||||||
a.btn.btn-info(
|
a.btn.btn-info(
|
||||||
href="/register"
|
href="/register"
|
||||||
style=(getLoggedInUserId() === undefined ? "" : "visibility: hidden")
|
style=(getLoggedInUserId() === null ? "" : "visibility: hidden")
|
||||||
) #{translate("sign_up_now")}
|
) #{translate("sign_up_now")}
|
||||||
.col-md-4
|
.col-md-4
|
||||||
.card.card-highlighted
|
.card.card-highlighted
|
||||||
|
@ -142,7 +142,7 @@ block content
|
||||||
br
|
br
|
||||||
a.btn.btn-info(
|
a.btn.btn-info(
|
||||||
href="/register"
|
href="/register"
|
||||||
style=(getLoggedInUserId() === undefined ? "" : "visibility: hidden")
|
style=(getLoggedInUserId() === null ? "" : "visibility: hidden")
|
||||||
) #{translate("sign_up_now")}
|
) #{translate("sign_up_now")}
|
||||||
|
|
||||||
.col-md-4
|
.col-md-4
|
||||||
|
|
Loading…
Reference in a new issue