Fix typo: pass -> password key in bare-metal ACM activation log entry (#7848)
The bare-metal ACM activation path at amtprovisioningserver.js:482 writes its log entry under the key 'pass', while every other credential-bearing logAmtActivation caller uses 'password': amtmanager.js:731 (runtime password change) amtmanager.js:2684 (CCM activation) amtmanager.js:2889 (TLS-ACM activation) certoperations.js:120 (ACM sign request) Because the startup loader (meshcentral.js:3800) and the in-line consumer in this same file (amtprovisioningserver.js:635) both gate on typeof <obj>.password == 'string', bare-metal entries write to disk but never enter the in-memory amtPasswords cache. The multi-password fallback in amtmanager.js:577-579 therefore has no cached candidate to try for these devices. Forward-only: existing 'pass'-keyed entries remain skipped by the loader. Also reformats this call to multi-line — it had grown to 14 properties on a single ~382-column line.