From a4ab88445c122837597d88fe68ce5b944f5324bb Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 5 Sep 2012 09:27:21 +0200 Subject: Reflect API change of SSH store in Web UI Format of ipasshpubkey in users and hosts changed from BYTES to STR. Web UI no longer gets the value as base64 encoded string in a object. Label was changed to reflect that the key don't have to be plain base64 encoded blob. https://fedorahosted.org/freeipa/ticket/2989 --- install/ui/field.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/ui/field.js') diff --git a/install/ui/field.js b/install/ui/field.js index 5aa24c70..42da6f92 100644 --- a/install/ui/field.js +++ b/install/ui/field.js @@ -659,7 +659,7 @@ IPA.sshkeys_field = function(spec) { if (keys[i] === '') continue; var value = { - key: keys[i].__base64__, + key: keys[i], fingerprint: fingerprints[i] }; values.push(value); -- cgit