mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Website: Update primary tagline partial (#19948)
Changes: - Added a typeof check to the primary tagline partial to prevent warnings from being logged when requests are sent to URLs that are seen as assets but don't exist on the server.
This commit is contained in:
parent
970f8ea7ca
commit
057781b5e4
1 changed files with 1 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
<%= primaryBuyingSituation === 'mdm' ? 'Your last MDM migration' : primaryBuyingSituation === 'vm' ? 'Focus on vulnerabilities, not vendors' : primaryBuyingSituation === 'eo-security' ? 'Light in every corner' : primaryBuyingSituation === 'eo-it' ? 'Untangle your endpoints' : 'Let people work' %>
|
||||
<%= typeof primaryBuyingSituation !== 'undefined' ? (primaryBuyingSituation === 'mdm' ? 'Your last MDM migration' : primaryBuyingSituation === 'vm' ? 'Focus on vulnerabilities, not vendors' : primaryBuyingSituation === 'eo-security' ? 'Light in every corner' : primaryBuyingSituation === 'eo-it' ? 'Untangle your endpoints' : 'Let people work') : 'Let people work' %>
|
||||
|
|
|
|||
Loading…
Reference in a new issue