From ac24c69858572a9c567dd843ec6112a4f11c5a89 Mon Sep 17 00:00:00 2001 From: contributor Date: Fri, 20 Feb 2026 19:03:52 +0200 Subject: [PATCH 01/17] fix(webview): refresh content for SPAs with "query string" in hash --- apps/client/src/types-lib.d.ts | 1 + apps/client/src/widgets/type_widgets/WebView.tsx | 2 ++ 2 files changed, 3 insertions(+) diff --git a/apps/client/src/types-lib.d.ts b/apps/client/src/types-lib.d.ts index 4f942b8cb6..8d3c9296d1 100644 --- a/apps/client/src/types-lib.d.ts +++ b/apps/client/src/types-lib.d.ts @@ -66,6 +66,7 @@ declare module "preact" { interface ElectronWebViewElement extends JSX.HTMLAttributes { src: string; class: string; + key?: string | number; } interface IntrinsicElements { diff --git a/apps/client/src/widgets/type_widgets/WebView.tsx b/apps/client/src/widgets/type_widgets/WebView.tsx index bbf170933d..4d45295e87 100644 --- a/apps/client/src/widgets/type_widgets/WebView.tsx +++ b/apps/client/src/widgets/type_widgets/WebView.tsx @@ -57,6 +57,7 @@ function DesktopWebView({ src, ntxId }: { src: string, ntxId: string | null | un return ; } @@ -80,6 +81,7 @@ function BrowserWebView({ src, ntxId }: { src: string, ntxId: string | null | un return