mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
feat: store null instead of empty string for album.description (#30123)
Addresses the first column of issue #28832: album.description now stores and returns null instead of an empty string. Co-authored-by: Giacomo Pinato <giacomo.pinato@gmail.com>
This commit is contained in:
parent
e7aace436d
commit
6b6058c463
9 changed files with 118 additions and 18 deletions
|
|
@ -17,7 +17,7 @@
|
|||
let description = $state(album.description);
|
||||
|
||||
const onSubmit = async () => {
|
||||
const success = await handleUpdateAlbum(album, { albumName, description });
|
||||
const success = await handleUpdateAlbum(album, { albumName, description: description || null });
|
||||
if (success) {
|
||||
onClose();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
const response = await updateAlbumInfo({
|
||||
id,
|
||||
updateAlbumDto: {
|
||||
description,
|
||||
description: description || null,
|
||||
},
|
||||
});
|
||||
eventManager.emit('AlbumUpdate', response);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue