ui: wrap error logs
This commit is contained in:
parent
d42905d394
commit
0911c6528c
1 changed files with 2 additions and 2 deletions
|
|
@ -32,9 +32,9 @@ function SubserviceHealth({
|
|||
</div>
|
||||
) : null}
|
||||
{subservice?.details?.errors?.length ? (
|
||||
<div className={'py-2 px-4 bg-white rounded border border-light-gray'}>
|
||||
<div className={'py-2 px-4 bg-white rounded border border-light-gray flex gap-1 flex-wrap'}>
|
||||
<div>Error log:</div>
|
||||
{subservice.details.errors.toString()}
|
||||
<div>{subservice.details.errors.toString()}</div>
|
||||
</div>
|
||||
) : subservice?.health ? null : (
|
||||
'Service not responding'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue