From 8f80956d0e4db2bf538b0999300894725b9d9047 Mon Sep 17 00:00:00 2001 From: Junsik Shim Date: Sun, 8 May 2022 18:18:53 +0900 Subject: [PATCH] Changed baseStyleName to baseStyleNames. --- packages/html/stories/Folding.stories.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/html/stories/Folding.stories.js b/packages/html/stories/Folding.stories.js index de875d15b..f730ab489 100644 --- a/packages/html/stories/Folding.stories.js +++ b/packages/html/stories/Folding.stories.js @@ -83,7 +83,7 @@ const Template = ({ label, ...args }) => { // Adds cells to the model in a single step graph.batchUpdate(() => { const col1 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, { - baseStyleName: 'column', + baseStyleNames: ['column'], }); const v1 = graph.insertVertex(col1, null, '1', 0, 0, 100, 30); @@ -98,7 +98,7 @@ const Template = ({ label, ...args }) => { const v12 = graph.insertVertex(v1, null, '1.2', 0, 0, 80, 30); const col2 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, { - baseStyleName: 'column', + baseStyleNames: ['column'], }); const v2 = graph.insertVertex(col2, null, '2', 0, 0, 100, 30);