From 57b52204a96e7313c30245fc164f2783097d5bdb Mon Sep 17 00:00:00 2001 From: Mike McNeil Date: Fri, 3 May 2024 17:31:30 -0500 Subject: [PATCH] Website: Update view-device-management.js (#18752) Prioritize quotes that are directly about MDM on the MDM page. --- website/api/controllers/view-device-management.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/api/controllers/view-device-management.js b/website/api/controllers/view-device-management.js index 18dbe2afdd..44b86bd210 100644 --- a/website/api/controllers/view-device-management.js +++ b/website/api/controllers/view-device-management.js @@ -29,7 +29,7 @@ module.exports = { }); // Specify an order for the testimonials on this page using the last names of quote authors - let testimonialOrderForThisPage = ['Erik Gomez', 'Nick Fohs', 'Dan Grzelak', 'Kenny Botelho', 'Wes Whetstone', 'Matt Carr']; + let testimonialOrderForThisPage = ['Erik Gomez', 'Kenny Botelho', 'Wes Whetstone', 'Matt Carr', 'Dan Grzelak', 'Nick Fohs']; testimonialsForScrollableTweets.sort((a, b)=>{ if(testimonialOrderForThisPage.indexOf(a.quoteAuthorName) === -1){ return 1;