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:
parent
9403cc46ba
commit
b85e1aa402
|
@ -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( ', ' ) }
|
||||
`;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
Comment: Update block references doc
|
||||
|
Loading…
Reference in New Issue