Skip to content

Commit 98301cf

Browse files
committed
Corrected code style violation
1 parent 3d989c5 commit 98301cf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/src/components/Tags.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ export default class Tags extends Component {
2323
Using {'{'}id: 'x', text:'foo'{'}'}
2424
<Select2
2525
multiple={false}
26-
data={[{text: 'Bug', id: 0}, {text: 'Feature', id: 1}, {text: 'Documents', id: 2}, {text: 'Discussion', id: 'UUID'}]}
26+
data={[
27+
{text: 'Bug', id: 0},
28+
{text: 'Feature', id: 1},
29+
{text: 'Documents', id: 2},
30+
{text: 'Discussion', id: 'UUID'}
31+
]}
2732
onOpen={() => { console.log('onOpen'); } }
2833
onClose={() => { console.log('onClose'); } }
2934
onSelect={() => { console.log('onSelect'); } }

0 commit comments

Comments
 (0)