Skip to content

Commit 1db2fbc

Browse files
committed
Fix missing maxPossible in parity-matrix DepthResult literals
1 parent d3064f8 commit 1db2fbc

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

showcase/shell-dashboard/src/components/parity-matrix.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function ParityCategorySection({
115115
const refCell = cellIndex.get(`${referenceSlug}/${feature.id}`);
116116
const refDepth: DepthResult = refCell
117117
? deriveDepth(refCell, liveStatus)
118-
: { achieved: 0, isRegression: false, unsupported: false };
118+
: { achieved: 0, maxPossible: 0, isRegression: false, unsupported: false };
119119
const refStatus = refDepth.unsupported
120120
? "unsupported"
121121
: (refCell?.status ?? "unshipped");
@@ -141,7 +141,7 @@ function ParityCategorySection({
141141
const cell = cellIndex.get(`${int.slug}/${feature.id}`);
142142
const depth: DepthResult = cell
143143
? deriveDepth(cell, liveStatus)
144-
: { achieved: 0, isRegression: false, unsupported: false };
144+
: { achieved: 0, maxPossible: 0, isRegression: false, unsupported: false };
145145
const cellStatus = depth.unsupported
146146
? "unsupported"
147147
: (cell?.status ?? "unshipped");
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)