We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea79b7c commit f8c7c27Copy full SHA for f8c7c27
1 file changed
packages/meta-updater/src/updatesScopeSupportFacetInfos.ts
@@ -28,8 +28,8 @@ export function updatesScopeSupportFacetInfos(
28
const facetInfo =
29
facetsInfos[facet as ScopeSupportFacet | TextualScopeSupportFacet];
30
const scopeType = serializeScopeType(facetInfo.scopeType);
31
- if (scopeType != currentScopeType) {
32
- if (currentScopeType !== null) {
+ if (scopeType !== currentScopeType) {
+ if (currentScopeType != null) {
33
rows.push("");
34
}
35
currentScopeType = scopeType;
0 commit comments