Skip to content

Commit ee0788b

Browse files
committed
test
1 parent 246119e commit ee0788b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

components/tree/__examples__/default.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ const sampleNodes = {
1919
expanded: true,
2020
nodes: [
2121
{
22-
label: 'Ground Fruits',
22+
assistiveText: 'Ground Fruits',
23+
label: <span>Ground Fruits</span>,
2324
type: 'branch',
2425
id: 4,
2526
nodes: [

utilities/sample-data/tree/index.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import sampleNodesWithLargeDataset from './sample-nodes-with-large-dataset';
23
import sampleNodesWithInitialState from './sample-nodes-with-initial-state';
34

@@ -13,7 +14,8 @@ const sampleNodesDefault = [
1314
id: 2,
1415
nodes: [
1516
{
16-
label: 'Ground Fruits',
17+
assistiveText: 'Ground Fruits',
18+
label: <span>Ground Fruits</span>,
1719
type: 'branch',
1820
id: 4,
1921
nodes: [

0 commit comments

Comments
 (0)