diff --git a/frontend/app/components/FFlags/FFlagItem/FFlagItem.tsx b/frontend/app/components/FFlags/FFlagItem/FFlagItem.tsx index ef42aaef6..b06923aee 100644 --- a/frontend/app/components/FFlags/FFlagItem/FFlagItem.tsx +++ b/frontend/app/components/FFlags/FFlagItem/FFlagItem.tsx @@ -44,7 +44,7 @@ function FFlagItem({ flag }: { flag: FeatureFlag }) { ) : null} diff --git a/frontend/app/components/FFlags/FFlagsList.tsx b/frontend/app/components/FFlags/FFlagsList.tsx index 49a23060b..50028a701 100644 --- a/frontend/app/components/FFlags/FFlagsList.tsx +++ b/frontend/app/components/FFlags/FFlagsList.tsx @@ -90,7 +90,7 @@ function FFlagsList({ siteId }: { siteId: string }) { ))}
-
+
{'Showing '} {Math.min(featureFlagsStore.total, featureFlagsStore.pageSize)} diff --git a/frontend/app/components/FFlags/FlagView/FlagView.tsx b/frontend/app/components/FFlags/FlagView/FlagView.tsx index 3a4e6413e..92bae6866 100644 --- a/frontend/app/components/FFlags/FlagView/FlagView.tsx +++ b/frontend/app/components/FFlags/FlagView/FlagView.tsx @@ -58,7 +58,7 @@ function FlagView({ siteId, fflagId }: { siteId: string; fflagId: string }) {
-
{current.flagKey}
+
{current.flagKey}
-
+
{current.description || 'There is no description for this feature flag.'}
@@ -90,7 +90,7 @@ function FlagView({ siteId, fflagId }: { siteId: string; fflagId: string }) {
{current.isPersist ? 'This flag maintains its state through successive authentication events.' - : 'This flag is not persistent.'} + : 'This flag is not persistent across authentication events.'}
{current.conditions.length > 0 ? ( diff --git a/frontend/app/components/FFlags/NewFFlag/Conditions.tsx b/frontend/app/components/FFlags/NewFFlag/Conditions.tsx index 34c4ad93d..96a738c59 100644 --- a/frontend/app/components/FFlags/NewFFlag/Conditions.tsx +++ b/frontend/app/components/FFlags/NewFFlag/Conditions.tsx @@ -57,8 +57,8 @@ function RolloutCondition({ set, conditions, removeCondition, index, readonly }:
)}
-
-
0 ? 'p-2 border-b mb-2' : ''}> +
+
0 ? 'p-2 mb-2' : ''}> {readonly && !conditions.filter?.filters?.length ? (
No conditions
@@ -84,10 +84,10 @@ function RolloutCondition({ set, conditions, removeCondition, index, readonly }: )}
-
+
Rollout to {readonly ? ( -
{conditions.rolloutPercentage}%
+
{conditions.rolloutPercentage}%
) : ( { toast.success('Feature flag updated.'); + history.push(withSiteId(fflagRead(fflagId), siteId)); }) .catch((e) => { e.json().then((body: Record) => onError(body.errors.join(','))) diff --git a/frontend/app/components/shared/Filters/FilterItem/FilterItem.tsx b/frontend/app/components/shared/Filters/FilterItem/FilterItem.tsx index 8d69725ca..18bc32727 100644 --- a/frontend/app/components/shared/Filters/FilterItem/FilterItem.tsx +++ b/frontend/app/components/shared/Filters/FilterItem/FilterItem.tsx @@ -59,7 +59,6 @@ function FilterItem(props: Props) { }); }; - console.log('FilterItem', toJS(filter)) return (
diff --git a/tracker/tracker/CHANGELOG.md b/tracker/tracker/CHANGELOG.md index bdebd9f56..5a43a6305 100644 --- a/tracker/tracker/CHANGELOG.md +++ b/tracker/tracker/CHANGELOG.md @@ -1,3 +1,8 @@ +# 8.1.0 + +- Console and network are now using proxy objects to capture calls (opt in for network) +- Added feature flags module and methods + # 8.0.0 - **[breaking]** support for multi-tab sessions