@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.mjs
CHANGED
|
@@ -3973,12 +3973,14 @@ function DebugWidget({ endpoint, getUser, onHide }) {
|
|
|
3973
3973
|
debugParts.push(`| ${label} | ${value}${unit} |`);
|
|
3974
3974
|
}
|
|
3975
3975
|
}
|
|
3976
|
+
const debugInfoContent = debugParts.join("\n");
|
|
3976
3977
|
const result = await submitFeedback(endpoint, {
|
|
3977
3978
|
title: comment.slice(0, 100),
|
|
3978
3979
|
description: "",
|
|
3979
3980
|
priority: "medium",
|
|
3980
3981
|
metadata,
|
|
3981
|
-
debugInfo:
|
|
3982
|
+
debugInfo: debugInfoContent,
|
|
3983
|
+
debug_info: debugInfoContent,
|
|
3982
3984
|
screenshot,
|
|
3983
3985
|
feedbackUrl: window.location.pathname,
|
|
3984
3986
|
feedbackMarker: {
|