mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
fix(web): large description on detail-panel (#6305)
This commit is contained in:
parent
12dc7c48c9
commit
e5786b200a
1 changed files with 4 additions and 4 deletions
|
@ -60,6 +60,7 @@
|
|||
api.assetApi.getAssetById({ id: asset.id }).then((res) => {
|
||||
people = res.data?.people || [];
|
||||
textarea.value = res.data?.exifInfo?.description || '';
|
||||
autoGrowHeight();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -112,10 +113,9 @@
|
|||
showEditFaces = false;
|
||||
};
|
||||
|
||||
const autoGrowHeight = (e: Event) => {
|
||||
const target = e.target as HTMLTextAreaElement;
|
||||
target.style.height = 'auto';
|
||||
target.style.height = `${target.scrollHeight}px`;
|
||||
const autoGrowHeight = () => {
|
||||
textarea.style.height = 'auto';
|
||||
textarea.style.height = `${textarea.scrollHeight}px`;
|
||||
};
|
||||
|
||||
const handleFocusIn = () => {
|
||||
|
|
Loading…
Reference in a new issue