Skip to content

Commit

Permalink
include feature flag check in helper (#2675)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDMurphy authored Feb 23, 2023
2 parents dd46f8f + 03e7b51 commit 3534314
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,17 @@ The types of changes are:
* Privacy Center
* Typechecking and validation of the `config.json` will be checked for backwards-compatibility. [#2661](https://github.com/ethyca/fides/pull/2661)

### Fixed

* Fix error with the classify dataset feature flag not writing the dataset to the server [#2675](https://github.com/ethyca/fides/pull/2675)

## [2.7.0](https://github.com/ethyca/fides/compare/2.6.6...2.7.0)

* Fides API
* Access and erasure support for Braintree [#2223](https://github.com/ethyca/fides/pull/2223)
* Added route to send a test message [#2585](https://github.com/ethyca/fides/pull/2585)
* Add default storage configuration functionality and associated APIs [#2438](https://github.com/ethyca/fides/pull/2438)

* Admin UI
* Custom Metadata [#2536](https://github.com/ethyca/fides/pull/2536)
* Create Custom Lists
Expand Down Expand Up @@ -162,7 +166,7 @@ The types of changes are:
* Add a "skip_param_values option" to optionally skip when we are missing param values in the body [#2384](https://github.com/ethyca/fides/pull/2384)
* Adds a new Universal Analytics Connector that works with the UA Tracking Id
* Adds intake and storage of Global Privacy Control Signal props for Consent [#2599](https://github.com/ethyca/fides/pull/2599)

### Changed

* Unified Fides Resources
Expand All @@ -183,7 +187,7 @@ The types of changes are:

### Developer Experience

* `nox -s test_env` has been replaced with `nox -s "fides_env(dev)"`
* `nox -s test_env` has been replaced with `nox -s "fides_env(dev)"`
* New command `nox -s "fides_env(test)"` creates a complete test environment with seed data (similar to `fides_env(dev)`) but with the production fides image so the built UI can be accessed at `localhost:8080` [#2399](https://github.com/ethyca/fides/pull/2399)
* Change from code climate to codecov for coverage reporting [#2402](https://github.com/ethyca/fides/pull/2402)

Expand Down
2 changes: 1 addition & 1 deletion clients/admin-ui/src/features/dataset/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const getUpdatedDatasetFromClassifyDataset = (
draftCollection.name
);

if (classifyCollection?.name !== activeCollection) {
if (activeCollection && classifyCollection?.name !== activeCollection) {
return;
}

Expand Down

0 comments on commit 3534314

Please sign in to comment.