fix: add missing message for no details on schema check/push changes (#7675)

This commit is contained in:
jdolle 2026-02-11 01:25:18 -08:00 committed by GitHub
parent 21f3aeeb2a
commit 30238d700b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'hive': patch
---
Add missing message for no details on schema check/push changes

View file

@ -612,7 +612,14 @@ function ChangeItem(
</Link>
)}
</div>
) : null}
) : (
<>
{change.severityReason ??
`No details available for this ${
change.severityLevel === SeverityLevelType.Breaking ? 'breaking ' : ''
}change.`}
</>
)}
</AccordionContent>
</AccordionItem>
</Accordion>