Skip to content

Commit

Permalink
fix: dots in env name accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Jan 11, 2023
1 parent 5bef9bb commit 3e3f501
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -265,7 +265,8 @@ export const ProjectFeatureToggles = ({
Header: loading ? () => '' : name,
maxWidth: 90,
id: `environments.${name}`,
accessor: `environments.${name}.enabled`,
accessor: (row: ListItemType) =>
row?.environments[name]?.enabled,
align: 'center',
Cell: ({
value,
Expand Down

0 comments on commit 3e3f501

Please sign in to comment.