@impakers/debug 1.4.11 → 1.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react.js +3 -1
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +3 -1
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react.js
CHANGED
|
@@ -4007,12 +4007,14 @@ function DebugWidget({ endpoint, getUser, onHide }) {
|
|
|
4007
4007
|
debugParts.push(`| ${label} | ${value}${unit} |`);
|
|
4008
4008
|
}
|
|
4009
4009
|
}
|
|
4010
|
+
const debugInfoContent = debugParts.join("\n");
|
|
4010
4011
|
const result = await submitFeedback(endpoint, {
|
|
4011
4012
|
title: comment.slice(0, 100),
|
|
4012
4013
|
description: "",
|
|
4013
4014
|
priority: "medium",
|
|
4014
4015
|
metadata,
|
|
4015
|
-
debugInfo:
|
|
4016
|
+
debugInfo: debugInfoContent,
|
|
4017
|
+
debug_info: debugInfoContent,
|
|
4016
4018
|
screenshot,
|
|
4017
4019
|
feedbackUrl: window.location.pathname,
|
|
4018
4020
|
feedbackMarker: {
|