Fix: Add scrolling to edit modals

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 14:42:35 +00:00
parent 4b500604d8
commit 2071a4561b
4 changed files with 6 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ export function VersionIndicator({
</Button>
<Dialog open={showHistory} onOpenChange={setShowHistory}>
<DialogContent className="max-w-4xl max-h-[80vh]">
<DialogContent className="max-w-4xl max-h-[80vh] overflow-y-auto">
<DialogHeader>
<DialogTitle>Version History: {entityName}</DialogTitle>
</DialogHeader>
@@ -84,7 +84,7 @@ export function VersionIndicator({
</div>
<Dialog open={showHistory} onOpenChange={setShowHistory}>
<DialogContent className="max-w-4xl max-h-[80vh]">
<DialogContent className="max-w-4xl max-h-[80vh] overflow-y-auto">
<DialogHeader>
<DialogTitle>Version History: {entityName}</DialogTitle>
</DialogHeader>