Bug 1335316 draft
authorRobert Masen <r.f.masen@gmail.com>
Fri, 08 Sep 2017 15:31:55 -0500
changeset 661690 a8cd6b2c62e45b89b3e83ef641f2532c39c4dd43
parent 661689 ea7b55d65d76214f97aaae502d65cb26fc6f5659
child 661691 97197473a296865686ab65db0f4e35b49d6c1c73
push id78846
push userbmo:r.f.masen@gmail.com
push dateFri, 08 Sep 2017 20:45:31 +0000
bugs1335316
milestone57.0a1
Bug 1335316 MozReview-Commit-ID: SLgKdldf41
devtools/client/webconsole/new-console-output/components/message-types/network-event-message.js
--- a/devtools/client/webconsole/new-console-output/components/message-types/network-event-message.js
+++ b/devtools/client/webconsole/new-console-output/components/message-types/network-event-message.js
@@ -88,31 +88,30 @@ function NetworkEventMessage({
   };
 
   // Message body components.
   const method = dom.span({className: "method" }, request.method);
   const xhr = isXHR
     ? dom.span({ className: "xhr" }, l10n.getStr("webConsoleXhrIndicator"))
     : null;
   const url = dom.a({ className: "url", title: request.url, onClick: toggle },
-    request.url.replace(/\?.+/, ""));
+    request.url);
   const statusBody = statusInfo
     ? dom.a({ className: "status", onClick: toggle }, statusInfo)
     : null;
 
   const messageBody = [method, xhr, url, statusBody];
 
   // Only render the attachment if the network-event is
   // actually opened (performance optimization).
   const attachment = open && dom.div({className: "network-info devtools-monospace"},
     TabboxPanel({
       activeTabId: networkMessageActiveTabId,
       request: networkMessageUpdate,
       sourceMapService: serviceContainer.sourceMapService,
-      openLink: serviceContainer.openLink,
       selectTab: (tabId) => {
         dispatch(actions.selectNetworkMessageTab(tabId));
       },
     })
   );
 
   return Message({
     dispatch,