We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b12f476 commit 9c59e54Copy full SHA for 9c59e54
ui/src/components/PublicKeys/PublicKeyEdit.vue
@@ -91,7 +91,6 @@
91
:messages="noTagsSelected ? 'No tags selected' : ''"
92
placeholder="Select up to 3 tags"
93
variant="outlined"
94
-
95
density="comfortable"
96
multiple
97
data-test="tags-selector"
@@ -463,7 +462,7 @@ const edit = async () => {
463
462
...(keyLocal.value as LocalPublicKey),
464
username: usernameToSend,
465
filter: filterToSend,
466
- data: Buffer.from(keyLocal.value.data as string, "utf-8").toString("base64"),
+ data: Buffer.from(publicKeyData.value, "utf-8").toString("base64"),
467
};
468
469
try {
0 commit comments