Skip to content

Commit 13a6e20

Browse files
committed
Fix missing array key error in generate stories
1 parent b0dcaea commit 13a6e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/GenerateStories.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private function buildStoryTemplate($item)
282282
$title = ucwords($item['path'], '/');
283283

284284
// If it's a root story, check if the name has been changed and update the parent title
285-
if ($item['isRoot']) {
285+
if (Arr::has($item, 'isRoot') && $item['isRoot']) {
286286
$name = $childStories[0]['name'] ?? false;
287287

288288
if ($name) {

0 commit comments

Comments
 (0)