1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 06:31:58 +00:00

fix(web): timeline issues on person page (#14366)

This commit is contained in:
Michel Heusschen 2024-11-26 16:02:48 +01:00 committed by GitHub
parent 25488b3138
commit b6ec79cbdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,14 +63,17 @@
data: PageData;
}
let { data = $bindable() }: Props = $props();
let { data }: Props = $props();
let numberOfAssets = $state(data.statistics.assets);
let { isViewing: showAssetViewer } = assetViewingStore;
let assetStore = new AssetStore({
isArchived: false,
personId: data.person.id,
const assetStoreOptions = { isArchived: false, personId: data.person.id };
const assetStore = new AssetStore(assetStoreOptions);
$effect(() => {
assetStoreOptions.personId = data.person.id;
handlePromiseError(assetStore.updateOptions(assetStoreOptions));
});
const assetInteractionStore = createAssetInteractionStore();
@ -329,7 +332,6 @@
$effect(() => {
if (person) {
handlePromiseError(updateAssetCount());
handlePromiseError(assetStore.updateOptions({ personId: person.id }));
}
});