Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Spread other error information in `ErrorMessage`
Sebastian Martinez committed 2 years ago
commit b107b43ad0b9a42d4f8523b60a896ad9df12a08b
parent 64389809ffafdc34373b0317587ceba43b9e0d4f
1 file changed +5 -1
modified src/components/ErrorMessage.svelte
@@ -40,7 +40,11 @@
    </div>
    <div style:max-width="25rem">
      <Command
-
        command={JSON.stringify({ message: error.message, stack: error.stack })}
+
        command={JSON.stringify({
+
          message: error.message,
+
          stack: error.stack,
+
          ...error,
+
        })}
        fullWidth
        showPrompt={false} />
    </div>