File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
standalone/plugins/top-bar/components Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default class Schemes extends React.Component {
4242 return (
4343 < label htmlFor = "schemes" >
4444 < span className = "schemes-title" > Schemes</ span >
45- < select onChange = { this . onChange } value = { currentScheme } >
45+ < select onChange = { this . onChange } value = { currentScheme } id = "schemes" >
4646 { schemes . valueSeq ( ) . map (
4747 ( scheme ) => < option value = { scheme } key = { scheme } > { scheme } </ option >
4848 ) . toArray ( ) }
Original file line number Diff line number Diff line change @@ -72,7 +72,11 @@ const Servers = ({
7272 return (
7373 < div className = "servers" >
7474 < label htmlFor = "servers" >
75- < select onChange = { handleServerChange } value = { currentServer } >
75+ < select
76+ onChange = { handleServerChange }
77+ value = { currentServer }
78+ id = "servers"
79+ >
7680 { servers
7781 . valueSeq ( )
7882 . map ( ( server ) => (
Original file line number Diff line number Diff line change @@ -141,7 +141,16 @@ class TopBar extends React.Component {
141141 }
142142 else {
143143 formOnSubmit = this . downloadUrl
144- control . push ( < input className = { classNames . join ( " " ) } type = "text" onChange = { this . onUrlChange } value = { this . state . url } disabled = { isLoading } /> )
144+ control . push (
145+ < input
146+ className = { classNames . join ( " " ) }
147+ type = "text"
148+ onChange = { this . onUrlChange }
149+ value = { this . state . url }
150+ disabled = { isLoading }
151+ id = "download-url-input"
152+ />
153+ )
145154 control . push ( < Button className = "download-url-button" onClick = { this . downloadUrl } > Explore</ Button > )
146155 }
147156
You can’t perform that action at this time.
0 commit comments