diff --git a/src/components/ApiKeyManagement.vue b/src/components/ApiKeyManagement.vue index 6d15a5b0..4949733f 100644 --- a/src/components/ApiKeyManagement.vue +++ b/src/components/ApiKeyManagement.vue @@ -70,14 +70,16 @@ /> - This is the only time your API key will be accessable. Please copy it to your clipboard now and store it + This is the only time your API key will be accessible. Please copy it to your clipboard now and store it in a secure location. You'll need it to access the API and won't be able to retrieve it again later. -
-
- Copy API key to clipboard -
+
@@ -170,14 +172,12 @@ export default { }) .finally(() => {}); }, - copyApiKey(text, isActive) { + copyApiKey(text) { navigator.clipboard.writeText(text); this.$eventBus.emit("displayMessage", { status: "info", message: "API key copied to clipboard!" }); - this.newApiKeyToken = null; - isActive.value = false; } } };