We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e181a commit 1deea49Copy full SHA for 1deea49
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jderobot-ide-interface",
3
- "version": "0.1.40",
+ "version": "0.1.41",
4
"main": "dist/main.js",
5
"typings": "dist/index.d.ts",
6
"files": [
src/components/Modals/Modal.tsx
@@ -315,12 +315,13 @@ export const ModalInputDropdown = ({
315
ref={ref}
316
id={id}
317
name={id}
318
+ list={id + '-list'}
319
onChange={onChange}
320
placeholder={placeholder}
321
{...props}
322
/>
323
<label htmlFor={id}>{placeholder}</label>
- <datalist>
324
+ <datalist id={id + '-list'}>
325
{entries && entries.map((name) => <option value={name} />)}
326
</datalist>
327
{description && <div>{description}</div>}
0 commit comments