shelving 1.253.4 → 1.253.5
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/package.json
CHANGED
package/ui/misc/Catcher.js
CHANGED
|
@@ -103,5 +103,5 @@ export function ErrorNotice({ reason }) {
|
|
|
103
103
|
*/
|
|
104
104
|
export function ErrorPage({ reason }) {
|
|
105
105
|
const message = getMessage(reason) ?? "Unknown error";
|
|
106
|
-
return (_jsx(Page, { title: "Error", children: _jsx(CenteredLayout, { children:
|
|
106
|
+
return (_jsx(Page, { title: "Error", children: _jsx(CenteredLayout, { children: _jsxs(Card, { status: "error", children: [_jsx(Subheading, { children: _jsxs(Row, { left: true, children: [_jsx(StatusIcon, { status: "error", size: "xlarge" }), " ", message] }) }), _jsx(RetryButton, {})] }) }) }));
|
|
107
107
|
}
|
package/ui/misc/Catcher.tsx
CHANGED
|
@@ -187,8 +187,8 @@ export function ErrorPage({ reason }: ErrorPageProps): ReactElement {
|
|
|
187
187
|
<Row left>
|
|
188
188
|
<StatusIcon status="error" size="xlarge" /> {message}
|
|
189
189
|
</Row>
|
|
190
|
-
<RetryButton />
|
|
191
190
|
</Subheading>
|
|
191
|
+
<RetryButton />
|
|
192
192
|
</Card>
|
|
193
193
|
</CenteredLayout>
|
|
194
194
|
</Page>
|