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) => {
|
export const EventLog = ({ title, project, feature }: IEventLogProps) => {
|
||||||
const { isOss, isEnterprise } = useUiConfig();
|
const { isOss, isEnterprise } = useUiConfig();
|
||||||
const eventTimeline = useUiFlag('eventTimeline') && !isOss();
|
const eventTimeline = useUiFlag('eventTimeline') && !isOss();
|
||||||
const showFilters = useUiFlag('newEventSearch') && isEnterprise();
|
const showFilters = isEnterprise();
|
||||||
const {
|
const {
|
||||||
events,
|
events,
|
||||||
total,
|
total,
|
||||||
|
@ -86,7 +86,6 @@ export type UiFlags = {
|
|||||||
enableLegacyVariants?: boolean;
|
enableLegacyVariants?: boolean;
|
||||||
navigationSidebar?: boolean;
|
navigationSidebar?: boolean;
|
||||||
flagCreator?: boolean;
|
flagCreator?: boolean;
|
||||||
newEventSearch?: boolean;
|
|
||||||
archiveProjects?: boolean;
|
archiveProjects?: boolean;
|
||||||
projectListImprovements?: boolean;
|
projectListImprovements?: boolean;
|
||||||
onboardingUI?: boolean;
|
onboardingUI?: boolean;
|
||||||
|
@ -56,7 +56,6 @@ export type IFlagKey =
|
|||||||
| 'extendedMetrics'
|
| 'extendedMetrics'
|
||||||
| 'removeUnsafeInlineStyleSrc'
|
| 'removeUnsafeInlineStyleSrc'
|
||||||
| 'originMiddleware'
|
| 'originMiddleware'
|
||||||
| 'newEventSearch'
|
|
||||||
| 'archiveProjects'
|
| 'archiveProjects'
|
||||||
| 'projectListImprovements'
|
| 'projectListImprovements'
|
||||||
| 'useProjectReadModel'
|
| 'useProjectReadModel'
|
||||||
@ -282,10 +281,6 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_ORIGIN_MIDDLEWARE,
|
process.env.UNLEASH_EXPERIMENTAL_ORIGIN_MIDDLEWARE,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
newEventSearch: parseEnvVarBoolean(
|
|
||||||
process.env.UNLEASH_EXPERIMENTAL_NEW_EVENT_SEARCH,
|
|
||||||
false,
|
|
||||||
),
|
|
||||||
archiveProjects: parseEnvVarBoolean(
|
archiveProjects: parseEnvVarBoolean(
|
||||||
process.env.UNLEASH_EXPERIMENTAL_ARCHIVE_PROJECTS,
|
process.env.UNLEASH_EXPERIMENTAL_ARCHIVE_PROJECTS,
|
||||||
false,
|
false,
|
||||||
|
@ -51,7 +51,6 @@ process.nextTick(async () => {
|
|||||||
enableLegacyVariants: false,
|
enableLegacyVariants: false,
|
||||||
extendedMetrics: true,
|
extendedMetrics: true,
|
||||||
originMiddleware: true,
|
originMiddleware: true,
|
||||||
newEventSearch: true,
|
|
||||||
projectListImprovements: true,
|
projectListImprovements: true,
|
||||||
useProjectReadModel: true,
|
useProjectReadModel: true,
|
||||||
addonUsageMetrics: true,
|
addonUsageMetrics: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user