Merge pull request #3396 from nemoDreamer/addons-knobs-fix-selectv2-example

Fixed addon Knobs' `selectV2` example's `defaultValue`
This commit is contained in:
Filipp Riabchun 2018-04-11 00:39:52 +03:00 committed by GitHub
commit 0744763aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ const options = {
Rainbow: ['red', 'orange', 'etc'],
None: null,
};
const defaultValue = 'Red';
const defaultValue = 'red';
const groupId = 'GROUP-ID1';
const value = selectV2(label, options, defaultValue, groupId);