From bf962d35853aeb449e5ab951e56976b9429e3a06 Mon Sep 17 00:00:00 2001 From: Patrick Brosset Date: Mon, 2 Dec 2024 10:39:41 +0100 Subject: [PATCH] Fix baseline view --- .eleventy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index 7a52df9f3b..3e48f28ad1 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -413,7 +413,7 @@ export default function (eleventyConfig) { const feature = features[id]; // Baseline features only. - if (feature.status.widelyAvailable === "high") { + if (feature.status.baseline === "high") { widelyAvailable.push(feature); } }