diff --git a/client/src/document/ingredients/browser-compatibility-table/feature-row.tsx b/client/src/document/ingredients/browser-compatibility-table/feature-row.tsx index 34173e96940a..52de03ae4425 100644 --- a/client/src/document/ingredients/browser-compatibility-table/feature-row.tsx +++ b/client/src/document/ingredients/browser-compatibility-table/feature-row.tsx @@ -105,16 +105,12 @@ function labelFromString(version: string | boolean | null | undefined) { if (typeof version !== "string") { return <>{"?"}; } - if (!version.startsWith("≤")) { - return <>{version}; + // Treat BCD ranges as exact versions to avoid confusion for the reader + // See https://github.com/mdn/yari/issues/3238 + if (version.startsWith("≤")) { + return <>{version.slice(1)}; } - const title = `Supported in version ${version.slice(1)} or earlier.`; - return ( - - ≤  - {version.slice(1)} - - ); + return <>{version}; } const CellText = React.memo(