Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
OliwiaGowor committed Aug 27, 2024
1 parent 2f72f50 commit a22ba50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/resources/ConfigMaps/ConfigMapDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ export function ConfigMapDetails(props) {
const customColumns = [
{
header: t('common.headers.owner'),
value: secret => (
value: configMap => (
<ControlledBy
ownerReferences={secret.metadata.ownerReferences}
namespace={secret.metadata.namespace}
ownerReferences={configMap.metadata.ownerReferences}
namespace={configMap.metadata.namespace}
/>
),
},
Expand Down

0 comments on commit a22ba50

Please sign in to comment.