@tangle-network/sandbox-ui 0.15.2 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -190,6 +190,9 @@ function ModelPicker({
|
|
|
190
190
|
type: "text",
|
|
191
191
|
value: query,
|
|
192
192
|
onChange: (e) => setQuery(e.target.value),
|
|
193
|
+
onKeyDown: (e) => {
|
|
194
|
+
if (e.key.length === 1) e.stopPropagation();
|
|
195
|
+
},
|
|
193
196
|
placeholder: "Search models...",
|
|
194
197
|
autoFocus: true,
|
|
195
198
|
className: "flex-1 bg-transparent text-sm outline-none placeholder:text-muted-foreground"
|
package/dist/dashboard.js
CHANGED
package/dist/index.js
CHANGED
package/dist/pages.js
CHANGED
package/package.json
CHANGED