Bug 1324533 - Fixed the issue that the length of the character is too long. r?rickychien draft
authorLocke Chen <locke12456@gmail.com>
Wed, 05 Apr 2017 20:01:54 +0800
changeset 556126 0ac82879f8fa31c6cc3644744dc6cb6e2f1bb9f1
parent 556071 b48addd2f771ea913bb9243ce96384f807e554c1
child 622796 aa48d9fc4f9ee024e44f890ccb95732571cff119
push id52449
push userbmo:locke12456@gmail.com
push dateWed, 05 Apr 2017 12:02:32 +0000
reviewersrickychien
bugs1324533
milestone55.0a1
Bug 1324533 - Fixed the issue that the length of the character is too long. r?rickychien MozReview-Commit-ID: 9Z8FR7OlTYQ
devtools/client/netmonitor/src/utils/mdn-utils.js
--- a/devtools/client/netmonitor/src/utils/mdn-utils.js
+++ b/devtools/client/netmonitor/src/utils/mdn-utils.js
@@ -138,17 +138,18 @@ const SUPPORTED_HTTP_CODES = [
     "504",
     "505",
     "511"
 ];
 
 const GA_PARAMS =
   "?utm_source=mozilla&utm_medium=devtools-netmonitor&utm_campaign=default";
 
-const NETWORK_MONITOR_TIMINGS_MDN_URL = "https://developer.mozilla.org/docs/Tools/Network_Monitor#Timings";
+const NETWORK_MONITOR_TIMINGS_MDN_URL = 
+  "https://developer.mozilla.org/docs/Tools/Network_Monitor#Timings";
 
 /**
  * Get the MDN URL for the specified header.
  *
  * @param {string} header Name of the header for the baseURL to use.
  *
  * @return {string} The MDN URL for the header, or null if not available.
  */