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({
110
110
{ /* Controls for the select selections. */ }
111
111
< label > Select:</ label >
112
112
113
- < input
113
+ < select
114
114
id = "selectInput"
115
- list = "nodeOptions"
116
- type = "text"
117
115
name = "nodeOptions"
118
116
onChange = { e => setSelectedNode ( e . target . value ) }
119
117
style = { dropDownStyle }
120
- />
121
- < datalist id = "nodeOptions" >
118
+ >
122
119
{ 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 >
124
121
) ) }
125
- </ datalist >
122
+ </ select >
126
123
127
124
{ /* This is the slider control for the step option */ }
128
125
{ linkType === 'step' && layout !== 'polar' && (
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export default function LandingPage() {
137
137
< 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" >
138
138
< img
139
139
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 "
141
141
alt = ""
142
142
/>
143
143
</ div >
You can’t perform that action at this time.
0 commit comments