You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for all the work y'all put into tauri. This is infinitely easier and faster than any of the .NET ecosystem application development I've done.
I made a repo with minimal reproduction code
With the code in a solidjs project:
import { For } from "solid-js";
export function App() {
const osList = [{name: "Edge"}, {name: "Firefox"}, {name: "Chrome"}, {name: undefined}];
return (
<>
<label for="browser">Choose your browser from the list:</label>
<input list="browsers" name="browser" id="browser"/>
<datalist id="browsers">
<For each={osList}>
{(osOption) => <option value={osOption.name ?? "Uhh"}/>}
</For>
</datalist>
</>
)
}
While running in dev (npm tauri dev)
Clicking on the 'browser' input field sometimes crashes the frontend, closing the developer tools window and stopping rendering. Sometimes the window is all black, and sometimes it's all white.
It still runs in the console.
If it works once, it'll probably keep working until I close and re-open the window. It feels like it fails about 40% of the time.
Describe the bug
Thanks for all the work y'all put into tauri. This is infinitely easier and faster than any of the .NET ecosystem application development I've done.
I made a repo with minimal reproduction code
With the code in a solidjs project:
While running in dev (
npm tauri dev
)Clicking on the 'browser' input field sometimes crashes the frontend, closing the developer tools window and stopping rendering. Sometimes the window is all black, and sometimes it's all white.
It still runs in the console.
If it works once, it'll probably keep working until I close and re-open the window. It feels like it fails about 40% of the time.
Reproduction
I made a repo with minimal reproduction code.
To do it yourself:
npm tauri dev
Expected behavior
The datalist options should appear below the input field, as they sometimes do.
Full
tauri info
outputStack trace
Additional context
Fails on nightly rust toolchain too.
I cannot get any errors if I run this in browser, so I don't think it's a solidjs issue.
The text was updated successfully, but these errors were encountered: