Skip to content

Commit

Permalink
Bug 1574430 - Enabling Search in Nightly. r=Honza.
Browse files Browse the repository at this point in the history
Differential Revision: https://phabricator.services.mozilla.com/D44841

--HG--
extra : moz-landing-system : lando
  • Loading branch information
lloan committed Sep 5, 2019
1 parent 64710ed commit c6d477d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions browser/app/profile/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -2108,8 +2108,12 @@ pref("devtools.serviceWorkers.testing.enabled", false);
// Enable the Network Monitor
pref("devtools.netmonitor.enabled", true);

// Enable Network Search
pref("devtools.netmonitor.features.search", false);
// Enable Network Search in Nightly builds.
#if defined(NIGHTLY_BUILD)
pref("devtools.netmonitor.features.search", true);
#else
pref("devtools.netmonitor.features.search", false);
#endif

// Enable the Application panel
pref("devtools.application.enabled", false);
Expand Down

0 comments on commit c6d477d

Please sign in to comment.