Skip to content

Commit 4a4823f

Browse files
committed
highlight main actions
1 parent f87e785 commit 4a4823f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/react/AppStatus.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ export default ({
6969
>
7070
{isError && (
7171
<>
72-
{showReconnect && onReconnect && <Button label="Reconnect" onClick={onReconnect} />}
72+
{showReconnect && onReconnect && <Button onClick={onReconnect}>
73+
<b>Reconnect</b>
74+
</Button>}
7375
{actionsSlot}
7476
<Button
7577
onClick={() => {
@@ -79,8 +81,9 @@ export default ({
7981
window.location.reload()
8082
}
8183
}}
82-
label="Reset App (recommended)"
83-
/>
84+
>
85+
<b>Reset App (recommended)</b>
86+
</Button>
8487
{!lockConnect && backAction && <Button label="Back" onClick={backAction} />}
8588
</>
8689
)}

0 commit comments

Comments
 (0)