@@ -145,18 +145,22 @@ class LibraryManager extends React.Component<ILibraryManagerProps, ILibraryManag
145
145
)
146
146
}
147
147
< div className = "arduinomanager-toolbar theme-bgcolor" >
148
- < div className = "dropdown-label" > Type</ div >
149
- < DropdownButton id = "typeselector" title = { this . state . type } onSelect = { this . typeUpdate } >
150
- { this . props . types . map ( ( c , index ) => {
151
- return ( < MenuItem key = { index } eventKey = { c } active = { c === this . state . type } > { c } </ MenuItem > ) ;
152
- } ) }
153
- </ DropdownButton >
154
- < div className = "dropdown-label" > Topic</ div >
155
- < DropdownButton id = "topicselector" title = { this . state . topic } onSelect = { this . topicUpdate } >
156
- { this . props . categories . map ( ( c , index ) => {
157
- return ( < MenuItem key = { index } eventKey = { c } active = { c === this . state . topic } > { c } </ MenuItem > ) ;
158
- } ) }
159
- </ DropdownButton >
148
+ < div className = "dropdown-filter" >
149
+ < span className = "dropdown-label" > Type</ span >
150
+ < DropdownButton id = "typeselector" title = { this . state . type } onSelect = { this . typeUpdate } >
151
+ { this . props . types . map ( ( c , index ) => {
152
+ return ( < MenuItem key = { index } eventKey = { c } active = { c === this . state . type } > { c } </ MenuItem > ) ;
153
+ } ) }
154
+ </ DropdownButton >
155
+ </ div >
156
+ < div className = "dropdown-filter" >
157
+ < span className = "dropdown-label" > Topic</ span >
158
+ < DropdownButton id = "topicselector" title = { this . state . topic } onSelect = { this . topicUpdate } >
159
+ { this . props . categories . map ( ( c , index ) => {
160
+ return ( < MenuItem key = { index } eventKey = { c } active = { c === this . state . topic } > { c } </ MenuItem > ) ;
161
+ } ) }
162
+ </ DropdownButton >
163
+ </ div >
160
164
< SearchInput className = "search-input" placeholder = "Filter your search..." onChange = { this . searchUpdate } />
161
165
< Checkbox className = "supported-checkbox" onChange = { this . handleCheck } > Only show libraries supported by current board</ Checkbox >
162
166
</ div >
0 commit comments