Skip to content

Commit 8bf8b18

Browse files
committed
feat: Add support for custom CLI command shortcuts
1 parent 2f59c7c commit 8bf8b18

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

jccm/src/Frontend/Layout/InventoryTreeMenuLocal.js

+9
Original file line numberDiff line numberDiff line change
@@ -976,6 +976,15 @@ const InventoryTreeMenuLocal = () => {
976976
>
977977
The network OS release might be outdated, but this needs confirmation.
978978
</Text>
979+
<Text
980+
size={100}
981+
weight='regular'
982+
style={{
983+
color: tokens.colorPaletteMarigoldForeground2,
984+
}}
985+
>
986+
Please perform a network access test manually using commands such as telnet.
987+
</Text>
979988
</div>
980989
),
981990
}}

jccm/src/Services/Device.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ export const getDeviceNetworkCondition = async (
808808
networkCondition.access = false;
809809
networkCondition.route = true;
810810
} else if (rpcReply.includes('curl: not found')) {
811-
networkCondition.message = `The network access test is unavailable because the 'curl' command is missing.`;
811+
networkCondition.message = `The network access test to ${termServer}:${termPort} is unavailable because the 'curl' command is missing.`;
812812
networkCondition.dns = true;
813813
networkCondition.access = true;
814814
networkCondition.route = true;

0 commit comments

Comments
 (0)