This commit is contained in:
Infinite
2020-01-30 23:34:20 +01:00
parent c1ce6d539d
commit 4a32f90382
30 changed files with 321 additions and 397 deletions

View File

@@ -19,7 +19,7 @@ export class ErrorBoundary extends React.Component<any, any> {
return (
<div>
<h2>Something went wrong.</h2>
<details style={{ whiteSpace: "pre-wrap" }}>
<details className="error-message">
{this.state.error && this.state.error.toString()}
<br />
{this.state.errorInfo.componentStack}