mirror of
https://github.com/immich-app/immich.git
synced 2026-02-14 21:08:15 +03:00
refactor(web): remove reactivity triggers (#14164)
This commit is contained in:
@@ -35,8 +35,6 @@
|
||||
person.updatedAt = Date.now().toString();
|
||||
}
|
||||
});
|
||||
// trigger reactivity
|
||||
people = people;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -74,9 +74,6 @@
|
||||
person.updatedAt = new Date().toISOString();
|
||||
}
|
||||
}
|
||||
|
||||
// trigger reactivity
|
||||
people = people;
|
||||
});
|
||||
});
|
||||
|
||||
@@ -146,9 +143,6 @@
|
||||
message: $t('change_name_successfully'),
|
||||
type: NotificationType.Info,
|
||||
});
|
||||
|
||||
// trigger reactivity
|
||||
people = people;
|
||||
} catch (error) {
|
||||
handleError(error, $t('errors.unable_to_save_name'));
|
||||
}
|
||||
|
||||
@@ -156,8 +156,6 @@
|
||||
|
||||
searchResultAlbums.push(...albums.items);
|
||||
searchResultAssets.push(...assets.items);
|
||||
searchResultAlbums = searchResultAlbums;
|
||||
searchResultAssets = searchResultAssets;
|
||||
|
||||
nextPage = assets.nextPage ? Number(assets.nextPage) : null;
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user