mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[ObsUX][Infra] Fix container image name not being displayed (#187220)
## Summary Small fix, container.image.name wasn't display on the metadata summary fields <img width="823" alt="image" src="fa2d162a
-9f9b-437a-8250-f88074740b70"> <img width="823" alt="image" src="ba0a16b6
-b402-4ed3-8836-c6a81a998aa3">
This commit is contained in:
parent
cf11c5fb3f
commit
c7789a4fc1
2 changed files with 1 additions and 2 deletions
|
@ -48,7 +48,6 @@ export const InfraMetadataContainerRT = rt.partial({
|
|||
name: rt.string,
|
||||
id: rt.string,
|
||||
runtime: rt.string,
|
||||
imageName: rt.string,
|
||||
image: rt.partial({ name: rt.string }),
|
||||
});
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ const containerMetadataData = (metadataInfo: InfraMetadata['info']): MetadataDat
|
|||
},
|
||||
{
|
||||
field: 'containerImageName',
|
||||
value: metadataInfo?.container?.imageName,
|
||||
value: metadataInfo?.container?.image?.name,
|
||||
tooltipFieldLabel: 'container.image.name',
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue