We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87e785 commit 4a4823fCopy full SHA for 4a4823f
src/react/AppStatus.tsx
@@ -69,7 +69,9 @@ export default ({
69
>
70
{isError && (
71
<>
72
- {showReconnect && onReconnect && <Button label="Reconnect" onClick={onReconnect} />}
+ {showReconnect && onReconnect && <Button onClick={onReconnect}>
73
+ <b>Reconnect</b>
74
+ </Button>}
75
{actionsSlot}
76
<Button
77
onClick={() => {
@@ -79,8 +81,9 @@ export default ({
79
81
window.location.reload()
80
82
}
83
}}
- label="Reset App (recommended)"
- />
84
+ >
85
+ <b>Reset App (recommended)</b>
86
+ </Button>
87
{!lockConnect && backAction && <Button label="Back" onClick={backAction} />}
88
</>
89
)}
0 commit comments