File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed
src/app/components/StateRoute/ComponentMap Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -110,19 +110,16 @@ export default function LinkControls({
110110 { /* Controls for the select selections. */ }
111111 < label > Select:</ label >
112112
113- < input
113+ < select
114114 id = "selectInput"
115- list = "nodeOptions"
116- type = "text"
117115 name = "nodeOptions"
118116 onChange = { e => setSelectedNode ( e . target . value ) }
119117 style = { dropDownStyle }
120- />
121- < datalist id = "nodeOptions" >
118+ >
122119 { nodeList . map ( node => (
123- < option key = { node . name } value = { node . name } > { node . name } </ option >
120+ node . children . length > 0 && < option key = { node . name } value = { node . name } > { node . name } </ option >
124121 ) ) }
125- </ datalist >
122+ </ select >
126123
127124 { /* This is the slider control for the step option */ }
128125 { linkType === 'step' && layout !== 'polar' && (
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export default function LandingPage() {
137137 < div className = "relative -mr-40 pl-4 sm:mx-auto sm:max-w-3xl sm:px-0 lg:h-full lg:max-w-none lg:pl-12" >
138138 < img
139139 className = "w-full rounded-md shadow-xl ring-1 ring-black ring-opacity-5 lg:h-full lg:w-auto lg:max-w-none"
140- src = "https://i.imgur.com/CyIU9Td.jpg "
140+ src = "/RTScreen.png "
141141 alt = ""
142142 />
143143 </ div >
You can’t perform that action at this time.
0 commit comments