Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.76] Rename and reorder Network panel as "(Expo, unstable)" #120

Merged
Merged
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
7 changes: 5 additions & 2 deletions front_end/panels/network/network-meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ const UIStrings = {
/**
*@description Title of the Network tool
*/
network: 'Network',
// [RN] Temporary rename for 0.76-stable. This panel is only shown when
// Expo sets `?unstable_enableNetworkPanel=true`.
network: 'Network (Expo, unstable)',
/**
*@description Command for showing the 'Network request blocking' tool
*/
Expand Down Expand Up @@ -145,7 +147,8 @@ UI.ViewManager.registerViewExtension({
id: 'network',
commandPrompt: i18nLazyString(UIStrings.showNetwork),
title: i18nLazyString(UIStrings.network),
order: 40,
// [RN] Temporary reordering for 0.76-stable.
order: 1100,
condition: Root.Runtime.conditions.reactNativeUnstableNetworkPanel,
async loadView() {
const Network = await loadNetworkModule();
Expand Down
Loading