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 642b0b4 commit 6c98588Copy full SHA for 6c98588
src/components/style-guide/utils.js
@@ -257,6 +257,13 @@ const getSerializedBlock = props => {
257
serialized += '\n' + serialize( duplicateBlock )
258
}
259
260
+ if ( blockName === 'stackable/column' ) {
261
+ block = createBlock( 'stackable/columns', {}, [ block ] )
262
+ newBlock = getGeneratedCss( [ block ] )
263
+ serialized = serialize( newBlock )
264
+ blockName = 'stackable/columns'
265
+ }
266
+
267
if ( blockName === 'stackable/icon-list-item' ) {
268
block = createBlock( 'stackable/icon-list', {}, [ block ] )
269
newBlock = getGeneratedCss( [ block ] )
0 commit comments