mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): slideshow on iphone (#11599)
* fix(web): slideshow on iphone * make requestFullscreen type optional
This commit is contained in:
parent
d5b23373c7
commit
dd638ac207
2 changed files with 7 additions and 2 deletions
5
web/src/app.d.ts
vendored
5
web/src/app.d.ts
vendored
|
|
@ -22,3 +22,8 @@ declare module '$env/static/public' {
|
|||
export const PUBLIC_IMMICH_PAY_HOST: string;
|
||||
export const PUBLIC_IMMICH_BUY_HOST: string;
|
||||
}
|
||||
|
||||
interface Element {
|
||||
// Make optional, because it's unavailable on iPhones.
|
||||
requestFullscreen?(options?: FullscreenOptions): Promise<void>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue