mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Website: Update continue.partial.ejs (#19436)
Changes: - Updated the conditional that decides if the continue partial is visible to prevent warnings logged when assets are not found.
This commit is contained in:
parent
bf239ecc78
commit
84827678f8
1 changed files with 1 additions and 1 deletions
2
website/views/partials/continue.partial.ejs
vendored
2
website/views/partials/continue.partial.ejs
vendored
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
<%if(me && showStartCta){%>
|
||||
<%if(typeof me !== 'undefined' && showStartCta){%>
|
||||
|
||||
<div purpose="continue-banner" class="d-flex justify-content-end">
|
||||
<div purpose="banner-body" class="d-flex flex-row align-items-center invisible <%- collapseStartCta ? 'collapsed' : ''%>">
|
||||
|
|
|
|||
Loading…
Reference in a new issue