Check for duplicates
Component
No response
Description
Commit c524d26 converted toolboxCategories.js from XML to JSON.
The commit accidentally dropped the items="0" mutation state from the first lists_create_with block. As a result, the Lists category has two lists_create_with blocks with 3 inputs, instead of one with 0 inputs and one with 3 inputs.
To fix, change the first lists_create_with block in the Lists category (line 624) from:
{
type: 'lists_create_with',
kind: 'block',
},
to:
{
type: 'lists_create_with',
kind: 'block',
extraState: {
itemCount: 0,
},
},
Reproduction steps
- Open the Lists category in the Advanced Playground.
Stack trace
Screenshots
No response
Check for duplicates
Component
No response
Description
Commit c524d26 converted toolboxCategories.js from XML to JSON.
The commit accidentally dropped the items="0" mutation state from the first
lists_create_withblock. As a result, the Lists category has twolists_create_withblocks with 3 inputs, instead of one with 0 inputs and one with 3 inputs.To fix, change the first
lists_create_withblock in the Lists category (line 624) from:to:
Reproduction steps
Stack trace
Screenshots
No response