File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ class Menu extends React.Component {
54
54
let className = 'slds-button' ;
55
55
if ( this . props . focusIndex === 0 ) className += ' slds-theme--shade' ;
56
56
return (
57
- < button id = "searchDetails" className = { className } >
57
+ < button id = "searchDetails" tabIndex = "-1" className = { className } >
58
58
< Icon name = "search" category = "utility" size = "x-small" className = "slds-icon-text-default" />
59
- { this . props . searchTerm ? '"' + this . props . searchTerm + '"' : "" } in { this . props . type }
59
+ { this . props . searchTerm ? '"' + this . props . searchTerm + '"' : "" } in { this . props . type + 's' }
60
60
</ button >
61
61
) ;
62
62
}
@@ -65,7 +65,7 @@ class Menu extends React.Component {
65
65
let className = 'slds-button' ;
66
66
if ( this . props . focusIndex === this . props . listLength + 1 ) className += ' slds-theme--shade' ;
67
67
return (
68
- < button id = "addItem" className = { className } onClick = { this . props . addItem } onMouseDown = { this . props . addItem } >
68
+ < button id = "addItem" tabIndex = "-1" className = { className } onClick = { this . props . addItem } onMouseDown = { this . props . addItem } >
69
69
< Icon name = "add" category = "utility" size = "x-small" className = "slds-icon-text-default" />
70
70
New { this . props . type }
71
71
</ button >
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ module.exports = React.createClass( {
59
59
</ div >
60
60
< main className = 'stage-main slds-grid slds-wrap slds-grow' role = 'main' >
61
61
< div className = 'region region--main slds-grow slds-size--1-of-1 slds-medium-size--1-of-2 slds-large-size--8-of-12 slds-col-rule--right slds-p-around--large' >
62
- < LookupBaseSection />
63
62
64
63
< ButtonSection />
65
64
65
+ < LookupBaseSection />
66
66
67
67
< PicklistBaseSection />
68
68
You can’t perform that action at this time.
0 commit comments