Refactor: Improve desktop layout and fix release lock

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 15:02:30 +00:00
parent 415aa45f4c
commit 9904a0c36b
3 changed files with 19 additions and 6 deletions

View File

@@ -126,7 +126,7 @@ export function SubmissionChangesDisplay({
</div>
{(changes.action === 'edit' || changes.action === 'create') && changes.totalChanges > 0 && (
<div className="flex flex-wrap gap-1">
<div className="flex flex-wrap gap-1 lg:grid lg:grid-cols-2 xl:grid-cols-3">
{changes.fieldChanges.slice(0, 5).map((change, idx) => (
<FieldDiff key={idx} change={change} compact />
))}