Skip to content
Snippets Groups Projects
Verified Commit 75c149c1 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Fix bug to prevent s3 key creation

#16
parent 76a9fcec
No related branches found
No related tags found
1 merge request!15Manipulate S3 keys
...@@ -63,7 +63,7 @@ function deleteKey(accessKey: string) { ...@@ -63,7 +63,7 @@ function deleteKey(accessKey: string) {
} }
function createKey() { function createKey() {
if (allowKeyDeletion.value && authStore.user != null) { if (authStore.user != null) {
KeyService.keyCreateUserKey(authStore.user.uid) KeyService.keyCreateUserKey(authStore.user.uid)
.then((s3key) => { .then((s3key) => {
keyState.keys.push(s3key); keyState.keys.push(s3key);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment