Fiber v0.14.2
Patch Changes
-
#72
276d629Thanks @MathiasWP! - Fix the credential picker crashing witheach_key_duplicate. Rows were keyed on the capture rule — source, key and path — which isn't unique: a session holding the same cookie name on two domains (sidon.example.comand onapi.example.com) produced two rows with the same key, and Svelte threw instead of rendering the list. Each row now carries its own id. -
#72
276d629Thanks @MathiasWP! - Make the crash banner and the update toast usable while a dialog is open. An open modal dialog setspointer-events: noneon<body>, which both of them inherited: a click on Copy, Hide or Update passed straight through and landed on the dialog, which read it as an outside click and closed itself. With dialogs stacked, the banner stayed out of reach until every one of them had been dismissed. Both now take pointer events of their own and keep the click from reaching the dialog underneath.