From 315049cb95eaa0247627f5c10a30ec7c64812ed2 Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 27 Jun 2023 14:34:33 -0500 Subject: [PATCH] Website: Fix success stories article category page (#12539) Closes: #12538 Changes: - Updated the article category page script to show the category title and category description on fleetdm.com/success-stories --- website/assets/js/pages/articles/articles.page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/assets/js/pages/articles/articles.page.js b/website/assets/js/pages/articles/articles.page.js index 1f2226fb5b..40bc1f2c0a 100644 --- a/website/assets/js/pages/articles/articles.page.js +++ b/website/assets/js/pages/articles/articles.page.js @@ -23,7 +23,7 @@ parasails.registerPage('articles', { } else { switch(this.category) { // If a specific category was provided, we'll set the articleCategory and categoryDescription. - case 'device-management': + case 'success-stories': this.articleCategory = 'Success stories'; this.categoryDescription = 'Read about how others are using Fleet and osquery.'; break;