Skip to content

Commit 7e17421

Browse files
committed
Fixes
1 parent 916bf7b commit 7e17421

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

website/src/pages/settings.tsx

+9-12
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ const DeviceConsolePasswordContainer = () => {
274274
header={
275275
<Header
276276
actions={
277-
<Button onClick={() => showDevicePasswordModal(true)}>
278-
Change Device Console Password
279-
</Button>
277+
<Button onClick={() => showDevicePasswordModal(true)}>
278+
Change Device Console Password
279+
</Button>
280280
}
281281
description="A password is required to protect access to your AWS DeepRacer vehicle."
282282
>
@@ -602,7 +602,11 @@ const DeviceSshContainer = () => {
602602
<Alert type="info">
603603
Type in "ssh deepracer@[IP Addresss]" on your terminal to log into the device remotely.
604604
</Alert>
605-
) : null}
605+
) : (
606+
<Alert type="info">
607+
Feature requires both the SSH service and the UFW firewall to be enabled.
608+
</Alert>
609+
)}
606610
{sshPasswordChangedSuccessVisible ? (
607611
<Alert
608612
onDismiss={() => {
@@ -923,14 +927,7 @@ const AboutContainer = () => {
923927
},
924928
{
925929
label: "Mandatory Update",
926-
value:
927-
softwareInfo.mandatory_update == "Unknown" ? (
928-
<StatusIndicator type="warning">Unknown</StatusIndicator>
929-
) : softwareInfo.mandatory_update ? (
930-
<StatusIndicator type="error">Mandatory Update required</StatusIndicator>
931-
) : (
932-
<StatusIndicator type="success">Update not mandatory</StatusIndicator>
933-
),
930+
value: "-",
934931
},
935932
{
936933
label: "Hardware Version",

0 commit comments

Comments
 (0)