We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7171dc7 + 9a5e7b4 commit 775038fCopy full SHA for 775038f
frontend/packages/operator-lifecycle-manager/src/components/descriptors/spec/endpoint.tsx
@@ -45,7 +45,7 @@ export const EndpointList: React.FC<EndpointListProps> = (props) => {
45
</Thead>
46
<Tbody>
47
{props.endpoints ? (
48
- props.endpoints.map((e) => <EndpointRow endpoint={e} key={e.port} />)
+ props.endpoints.map((e) => <EndpointRow endpoint={e} key={`${e.port}-${e.interval}`} />)
49
) : (
50
<span className="pf-v6-u-text-color-subtle">{t('No endpoints')}</span>
51
)}
0 commit comments