Use correct AND expression (#48011)

* Use correct AND expression

* Add changefile(s) from automation for the following project(s): woocommerce-blocks

---------

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Roy Ho 2024-05-31 05:23:57 -07:00 committed by GitHub
parent 9403cc46ba
commit b85e1aa402
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 177 additions and 173 deletions

View File

@ -163,8 +163,8 @@ ${ blockjson.description || '' }
- **Category:** ${ blockjson.category || '' }
- **Ancestor:** ${ blockjson.ancestor || '' }
- **Parent:** ${ blockjson.parent || '' }
- **Supports:** ${ supportsList || supportsList.sort().join( ', ' ) }
- **Attributes:** ${ attributes || attributes.sort().join( ', ' ) }
- **Supports:** ${ supportsList && supportsList.sort().join( ', ' ) }
- **Attributes:** ${ attributes && attributes.sort().join( ', ' ) }
`;
}

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Comment: Update block references doc