mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 09:13:32 +08:00
26 lines
739 B
TypeScript
26 lines
739 B
TypeScript
import { Alert } from 'app/types/unified-alerting';
|
|
import React, { FC } from 'react';
|
|
import { AnnotationDetailsField } from '../AnnotationDetailsField';
|
|
import { DetailsField } from '../DetailsField';
|
|
|
|
interface Props {
|
|
instance: Alert;
|
|
}
|
|
|
|
export const AlertInstanceDetails: FC<Props> = ({ instance }) => {
|
|
const annotations = (Object.entries(instance.annotations || {}) || []).filter(([_, value]) => !!value.trim());
|
|
|
|
return (
|
|
<div>
|
|
{instance.value && (
|
|
<DetailsField label="Value" horizontal={true}>
|
|
{instance.value}
|
|
</DetailsField>
|
|
)}
|
|
{annotations.map(([key, value]) => (
|
|
<AnnotationDetailsField key={key} annotationKey={key} value={value} />
|
|
))}
|
|
</div>
|
|
);
|
|
};
|