diff --git a/ui/src/app/flags/rollouts/Rollouts.tsx b/ui/src/app/flags/rollouts/Rollouts.tsx
index 22a3e5a550..28fcea2edd 100644
--- a/ui/src/app/flags/rollouts/Rollouts.tsx
+++ b/ui/src/app/flags/rollouts/Rollouts.tsx
@@ -13,11 +13,7 @@ import {
sortableKeyboardCoordinates,
verticalListSortingStrategy
} from '@dnd-kit/sortable';
-import {
- InformationCircleIcon,
- PlusIcon,
- StarIcon
-} from '@heroicons/react/24/outline';
+import { PlusIcon, StarIcon } from '@heroicons/react/24/outline';
import { useCallback, useEffect, useRef, useState } from 'react';
import { useSelector } from 'react-redux';
import { selectReadonly } from '~/app/meta/metaSlice';
@@ -249,9 +245,7 @@ export default function Rollouts(props: RolloutsProps) {
-
- Rollouts
-
+
Rollouts
Return boolean values based on rules you define
@@ -284,8 +278,7 @@ export default function Rollouts(props: RolloutsProps) {
rule that matches will be applied.
-
- You can re-arrange rollouts by clicking on a rollout header and{' '}
+ Rollouts can be rearranged by clicking on a rollout header and{' '}
dragging and dropping it
into place.
diff --git a/ui/src/app/flags/Evaluation.tsx b/ui/src/app/flags/rules/Rules.tsx
similarity index 95%
rename from ui/src/app/flags/Evaluation.tsx
rename to ui/src/app/flags/rules/Rules.tsx
index bdd7bae147..ba76fce268 100644
--- a/ui/src/app/flags/Evaluation.tsx
+++ b/ui/src/app/flags/rules/Rules.tsx
@@ -13,10 +13,11 @@ import {
sortableKeyboardCoordinates,
verticalListSortingStrategy
} from '@dnd-kit/sortable';
-import { InformationCircleIcon, PlusIcon } from '@heroicons/react/24/outline';
+import { PlusIcon } from '@heroicons/react/24/outline';
import { useCallback, useEffect, useState } from 'react';
import { useSelector } from 'react-redux';
import { useNavigate, useOutletContext } from 'react-router-dom';
+import { FlagProps } from '~/app/flags/FlagProps';
import { selectReadonly } from '~/app/meta/metaSlice';
import { selectCurrentNamespace } from '~/app/namespaces/namespacesSlice';
import EmptyState from '~/components/EmptyState';
@@ -36,9 +37,8 @@ import { FlagType } from '~/types/Flag';
import { IRule, IRuleList } from '~/types/Rule';
import { ISegment, ISegmentList, SegmentOperatorType } from '~/types/Segment';
import { IVariant } from '~/types/Variant';
-import { FlagProps } from './FlagProps';
-export default function Evaluation() {
+export default function Rules() {
const { flag } = useOutletContext();
const [segments, setSegments] = useState([]);
@@ -242,13 +242,10 @@ export default function Evaluation() {
{/* rules */}
-
+
-
- Rules
-
-
+
Enable rich targeting and segmentation for evaluating your flags
@@ -280,8 +277,7 @@ export default function Evaluation() {
first rule that matches will be applied.
-
- You can re-arrange rules by clicking on a rule header and{' '}
+ Rules can be rearranged by clicking on a rule header and{' '}
dragging and dropping{' '}
it into place.