mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-08 21:59:09 -05:00
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/2626
Author: @shreyaspapi
Created: 3/10/2026
Status: ✅ Merged
Merged: 3/10/2026
Merged by: @oschwartz10612
Base:
main← Head:fix/2572-healthcheck-button-hidden📝 Commits (1)
bae952ffix: ensure Credenza dialog max-height📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
src/components/Credenza.tsx(+1 -1)📄 Description
Community Contribution License Agreement
By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
Description
Fixes #2572
The
CredenzaContentcomponent on desktop usedmax-h-screen(100vh) but was positioned withtop: clamp(1.5rem, 12vh, 200px). This caused the dialog to extend up to 200px below the viewport, hiding the footer and its "Done" button behind the OS taskbar.Changed
md:max-h-screentomd:max-h-[calc(100vh-clamp(3rem,24vh,400px))]so the max-height subtracts the top offset (doubled to reserve equal space at top and bottom), keeping the dialog fully within the viewport.How to test?
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.