From df301648b0a80e73b7e7b405a22b01bc1b5aa432 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 8 May 2024 01:41:21 -0500 Subject: [PATCH] Website: Fix homepage and calendar-banner partial (#18826) Related to: https://github.com/fleetdm/fleet/issues/18825 Changes: - Added a missing closing parenthesis to the conditional added to the homepage in https://github.com/fleetdm/fleet/pull/18822 and the calendar banner partial in https://github.com/fleetdm/fleet/pull/18824 --- website/views/pages/homepage.ejs | 2 +- website/views/partials/calendar-banner.partial.ejs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/views/pages/homepage.ejs b/website/views/pages/homepage.ejs index 910c8e6e4e..b9e567f0cc 100644 --- a/website/views/pages/homepage.ejs +++ b/website/views/pages/homepage.ejs @@ -42,7 +42,7 @@

Tell employees why

Use AI to explain why your security policies matter, and install required updates en masse without locking people out of meetings.

<%} %> - <% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation) { %>
+ <% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation)) { %>

Say goodbye to annoying IT notifications and restarts.

Use AI to explain why your security policies matter.

Stop making exceptions for executives when OS updates lock them out of important meetings.

diff --git a/website/views/partials/calendar-banner.partial.ejs b/website/views/partials/calendar-banner.partial.ejs index 080265c27c..b864240e7a 100644 --- a/website/views/partials/calendar-banner.partial.ejs +++ b/website/views/partials/calendar-banner.partial.ejs @@ -14,7 +14,7 @@

Tell employees why

Use AI to explain why your security policies matter, and install required updates en masse without locking people out of meetings.

<%} %> - <% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation) { %>
+ <% if (primaryBuyingSituation && !['eo-security'].includes(primaryBuyingSituation)) { %>

Say goodbye to annoying IT notifications and restarts.

Use AI to explain why your security policies matter.

Stop making exceptions for executives when OS updates lock them out of important meetings.