Skip to content

Commit

Permalink
[fixed] missing key on Multiselect
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Nov 2, 2015
1 parent 9e8027b commit 5d1b530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Multiselect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { widgetEditable, widgetEnabled } from './util/interaction';
import { instanceId, notify, isFirstFocusedRender } from './util/widgetHelpers';

var compatCreate = (props, msgs) => typeof msgs.createNew === 'function'
? msgs.createNew(props) : [<strong>{`"${props.searchTerm}"`}</strong>, ' ' + msgs.createNew]
? msgs.createNew(props) : [<strong key='dumb'>{`"${props.searchTerm}"`}</strong>, ' ' + msgs.createNew]

let { omit, pick, splat } = _;

Expand Down

0 comments on commit 5d1b530

Please sign in to comment.