update maskKey function to enhance key visibility handling

This commit is contained in:
decolua
2026-06-17 11:03:24 +07:00
parent c7d07448c5
commit 2a619655b8
@@ -733,8 +733,8 @@ export default function APIPageClient({ machineId }) {
}; };
const maskKey = (fullKey) => { const maskKey = (fullKey) => {
if (!fullKey) return ""; if (!fullKey || fullKey.length <= 10) return fullKey || "";
return fullKey.length > 8 ? fullKey.slice(0, 8) + "..." : fullKey; return fullKey.slice(0, 6) + "•".repeat(fullKey.length - 10) + fullKey.slice(-4);
}; };
const toggleKeyVisibility = (keyId) => { const toggleKeyVisibility = (keyId) => {