mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-18 13:48:58 +02:00
fix: dots in env name accessor
This commit is contained in:
parent
5bef9bbfdd
commit
3e3f501c12
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user