Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions front_end/global_typings/react_native.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ declare global {
var enableReactNativeOpenInExternalEditor: boolean|undefined;
var reactNativeOpenInEditorButtonImage: string|undefined;
var FB_ONLY__reactNativeFeedbackLink: string|undefined;
var FB_ONLY__enablePerformance: any;
}
}
2 changes: 1 addition & 1 deletion front_end/panels/timeline/timeline-meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ UI.ViewManager.registerViewExtension({
title: i18nLazyString(UIStrings.performance),
commandPrompt: i18nLazyString(UIStrings.showPerformance),
order: 50,
experiment: Root.Runtime.ExperimentName.ENABLE_PERFORMANCE_PANEL,
experiment: globalThis.FB_ONLY__enablePerformance === true ? undefined : Root.Runtime.ExperimentName.ENABLE_PERFORMANCE_PANEL,
async loadView() {
const Timeline = await loadTimelineModule();
return Timeline.TimelinePanel.TimelinePanel.instance();
Expand Down
Loading