fix(web): constrain staged attachment tray height (#3168)

* fix(docker): fix container startup crash due to missing OD_API_TOKEN

* fix(docker): forward OD_API_TOKEN to fix docker container boot loop

* fix(docker): enforce non-empty OD_API_TOKEN for docker-compose

* fix(deploy): automate OD_API_TOKEN generation in installer and close compose loop

* docs(readme): guide manual deployment users to configure OD_API_TOKEN

* docs(readme): align working directory paths for manual deployment instructions

* docs(readme): align working directory paths for manual deployment instructions

* docs(readme): restore git clone context for first-time users

* fix(web): Limit the maximum height of the StagedAttachments component.

related issue 3155

* fix(web): limit attachment area overflow to vertical only
This commit is contained in:
hahalolo 2026-05-28 16:56:19 +08:00 committed by GitHub
parent 381e9a96e2
commit 92f7ff86b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -759,6 +759,9 @@
flex-wrap: wrap;
gap: 6px;
padding: 4px 4px 0;
max-height: min(148px, 22vh);
overflow-y: auto;
overflow-x: hidden;
}
.staged-chip {
display: inline-flex;