mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
[Gitar] Cleaning up stale flag: newEventSearch with value true (#8196)
[![Gitar](https://raw.githubusercontent.com/gitarcode/.github/main/assets/gitar-banner.svg)](https://gitar.co) --- This automated PR was generated by [Gitar](https://gitar.co). View [docs](https://gitar.co/docs). --------- Co-authored-by: Gitar <noreply@gitar.co> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
ebcdd67db0
commit
bb32336408
@ -53,7 +53,7 @@ const Placeholder = styled('li')({
|
||||
export const EventLog = ({ title, project, feature }: IEventLogProps) => {
|
||||
const { isOss, isEnterprise } = useUiConfig();
|
||||
const eventTimeline = useUiFlag('eventTimeline') && !isOss();
|
||||
const showFilters = useUiFlag('newEventSearch') && isEnterprise();
|
||||
const showFilters = isEnterprise();
|
||||
const {
|
||||
events,
|
||||
total,
|
||||
|
@ -86,7 +86,6 @@ export type UiFlags = {
|
||||
enableLegacyVariants?: boolean;
|
||||
navigationSidebar?: boolean;
|
||||
flagCreator?: boolean;
|
||||
newEventSearch?: boolean;
|
||||
archiveProjects?: boolean;
|
||||
projectListImprovements?: boolean;
|
||||
onboardingUI?: boolean;
|
||||
|
@ -56,7 +56,6 @@ export type IFlagKey =
|
||||
| 'extendedMetrics'
|
||||
| 'removeUnsafeInlineStyleSrc'
|
||||
| 'originMiddleware'
|
||||
| 'newEventSearch'
|
||||
| 'archiveProjects'
|
||||
| 'projectListImprovements'
|
||||
| 'useProjectReadModel'
|
||||
@ -282,10 +281,6 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_ORIGIN_MIDDLEWARE,
|
||||
false,
|
||||
),
|
||||
newEventSearch: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_NEW_EVENT_SEARCH,
|
||||
false,
|
||||
),
|
||||
archiveProjects: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_ARCHIVE_PROJECTS,
|
||||
false,
|
||||
|
@ -51,7 +51,6 @@ process.nextTick(async () => {
|
||||
enableLegacyVariants: false,
|
||||
extendedMetrics: true,
|
||||
originMiddleware: true,
|
||||
newEventSearch: true,
|
||||
projectListImprovements: true,
|
||||
useProjectReadModel: true,
|
||||
addonUsageMetrics: true,
|
||||
|
@ -110,7 +110,7 @@ module.exports = {
|
||||
{
|
||||
type: 'doc',
|
||||
label: 'Gradual Rollout',
|
||||
id: 'feature-flag-tutorials/use-cases/gradual-rollout',
|
||||
id: 'feature-flag-tutorials/use-cases/gradual-rollout',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user