mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix(web): isFullScreen initial value check is incorrect (#27520)
This commit is contained in:
parent
6fcf651d76
commit
f29c06799f
1 changed files with 1 additions and 1 deletions
|
|
@ -338,7 +338,7 @@
|
|||
onAction?.(action);
|
||||
};
|
||||
|
||||
let isFullScreen = $derived(fullscreenElement !== null);
|
||||
let isFullScreen = $derived(!!fullscreenElement);
|
||||
|
||||
$effect(() => {
|
||||
if (album && !album.isActivityEnabled && activityManager.commentCount === 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue