mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
fix: add missing message for no details on schema check/push changes (#7675)
This commit is contained in:
parent
21f3aeeb2a
commit
30238d700b
2 changed files with 13 additions and 1 deletions
5
.changeset/smart-grapes-prove.md
Normal file
5
.changeset/smart-grapes-prove.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Add missing message for no details on schema check/push changes
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue