File tree 1 file changed +9
-12
lines changed
1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -274,9 +274,9 @@ const DeviceConsolePasswordContainer = () => {
274
274
header = {
275
275
< Header
276
276
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 >
280
280
}
281
281
description = "A password is required to protect access to your AWS DeepRacer vehicle."
282
282
>
@@ -602,7 +602,11 @@ const DeviceSshContainer = () => {
602
602
< Alert type = "info" >
603
603
Type in "ssh deepracer@[IP Addresss]" on your terminal to log into the device remotely.
604
604
</ 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
+ ) }
606
610
{ sshPasswordChangedSuccessVisible ? (
607
611
< Alert
608
612
onDismiss = { ( ) => {
@@ -923,14 +927,7 @@ const AboutContainer = () => {
923
927
} ,
924
928
{
925
929
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 : "-" ,
934
931
} ,
935
932
{
936
933
label : "Hardware Version" ,
You can’t perform that action at this time.
0 commit comments