Skip to content

Commit

Permalink
(demo/src/hooks/useSkeleton.ts) Fix parentId of "group 5" elements
Browse files Browse the repository at this point in the history
  • Loading branch information
DaviDevMod committed May 18, 2023
1 parent fd6cf73 commit 55ccb84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/demo/src/hooks/useSkeleton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ const initialSkeletonState: SkeletonGroup = {
{
id: 'group 5',
children: [
{ id: 'Q', tabIndex: '1', forward: 2, backward: 1, parentId: 'group 1', disabled: false, display: true },
{ id: 'R', tabIndex: '0', forward: 0, backward: 6, parentId: 'group 1', disabled: false, display: true },
{ id: 'S', tabIndex: '-1', forward: 2, backward: 6, parentId: 'group 1', disabled: false, display: true },
{ id: 'Q', tabIndex: '1', forward: 2, backward: 1, parentId: 'group 5', disabled: false, display: true },
{ id: 'R', tabIndex: '0', forward: 0, backward: 6, parentId: 'group 5', disabled: false, display: true },
{ id: 'S', tabIndex: '-1', forward: 2, backward: 6, parentId: 'group 5', disabled: false, display: true },
],
},
],
Expand Down

0 comments on commit 55ccb84

Please sign in to comment.