File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' svelte ' : patch
3
+ ---
4
+
5
+ fix: webview preload tag can be any string
Original file line number Diff line number Diff line change @@ -1805,7 +1805,7 @@ export interface HTMLWebViewAttributes extends HTMLAttributes<HTMLElement> {
1805
1805
nodeintegration ?: boolean | undefined | null ;
1806
1806
partition ?: string | undefined | null ;
1807
1807
plugins ?: boolean | undefined | null ;
1808
- preload ?: ' auto' | 'none' | 'metadata' | '' | undefined | null ;
1808
+ preload ?: string | undefined | null ; // in the DOM it's only ' auto' | 'none' | 'metadata' | '', but electron allows arbitrary values
1809
1809
src ?: string | undefined | null ;
1810
1810
useragent ?: string | undefined | null ;
1811
1811
webpreferences ?: string | undefined | null ;
You can’t perform that action at this time.
0 commit comments