Skip to content

Commit

Permalink
Feature flag admin endpoints (#1474)
Browse files Browse the repository at this point in the history
* WIP: Feature flag admin endpoints

* update feature flag service tests

* review changes

* merge dev into feature/feature-flag-admin-api

* review changes

---------

Co-authored-by: danoswaltCL <[email protected]>
  • Loading branch information
2 people authored and KD1712 committed Jun 6, 2024
1 parent 51022a5 commit 127b445
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export class ExperimentDesignStepperService {
const payloadTableData = this.getSimpleExperimentPayloadTableData();

payloadTableData.forEach((payloadRowData: SimpleExperimentPayloadTableRowData) => {
const parentCondition = conditions.find((condition) => condition.conditionCode === payloadRowData.condition).id;
const parentCondition = conditions.find((condition) => condition.conditionCode === payloadRowData.condition);

const decisionPoint = decisionPoints.find(
(decisionPoint) => decisionPoint.target === payloadRowData.target && decisionPoint.site === payloadRowData.site
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
<app-common-details-page-header
rootName="feature-flags.title.text"
[detailsName]="flagName"
rootLink="featureflags"
>
<app-common-details-page-header rootName="feature-flags.title.text" [detailsName]="flagName" rootLink="featureflags">
</app-common-details-page-header>

0 comments on commit 127b445

Please sign in to comment.