Skip to content

Fiber v0.14.2

Choose a tag to compare

@github-actions github-actions released this 24 Aug 10:57
c874c4b

Patch Changes

  • #72 276d629 Thanks @MathiasWP! - Fix the credential picker crashing with each_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 (sid on .example.com and on api.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 276d629 Thanks @MathiasWP! - Make the crash banner and the update toast usable while a dialog is open. An open modal dialog sets pointer-events: none on <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.