diff --git a/features/scroll-snap.yml.dist b/features/scroll-snap.yml.dist index 4f5df78df16..d1d0ab7baf5 100644 --- a/features/scroll-snap.yml.dist +++ b/features/scroll-snap.yml.dist @@ -85,7 +85,6 @@ compat_features: # safari_ios: "11" - css.properties.scroll-snap-type - # ⬇️ Same status as overall feature ⬇️ # baseline: low # baseline_low_date: 2022-07-26 # support: diff --git a/features/web-bluetooth.yml.dist b/features/web-bluetooth.yml.dist index 54e6554d99c..9c5084a3b0e 100644 --- a/features/web-bluetooth.yml.dist +++ b/features/web-bluetooth.yml.dist @@ -75,7 +75,6 @@ compat_features: - api.BluetoothRemoteGATTCharacteristic.writeValueWithResponse - api.BluetoothRemoteGATTCharacteristic.writeValueWithoutResponse - # ⬇️ Same status as overall feature ⬇️ # baseline: false # support: {} - api.Bluetooth.getDevices diff --git a/scripts/dist.ts b/scripts/dist.ts index 01400f29277..00ff9924371 100644 --- a/scripts/dist.ts +++ b/scripts/dist.ts @@ -192,7 +192,7 @@ function toDist(sourcePath: string): YAML.Document { const sortedGroups = new Map(); for (const status of sortedStatus) { let comment = YAML.stringify(status); - if (isDeepStrictEqual(status, computedStatus)) { + if (isDeepStrictEqual(status, source.status ?? computedStatus)) { comment = `⬇️ Same status as overall feature ⬇️\n${comment}`; } sortedGroups.set(comment, groups.get(status));