diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 326738f..993963b 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -283,6 +283,19 @@ fillEditForm(secret); } +function openEditMetadata() { + if (!selected.value) return; + fillEditForm(selected.value); + editing.value = true; +} + +function cancelEditMetadata() { + if (selected.value) { + fillEditForm(selected.value); + } + editing.value = false; +} + async function loadSecrets() { loading.value = true; error.value = ""; @@ -613,49 +626,11 @@ {{ selected.status }} - Edit + Edit - - - - - - - - - - - - - Actual - - - Outdated - - - - - - - - - - - Save metadata - - Cancel - - - @@ -1002,6 +977,62 @@ + + + + + + + + + + + + + + + + + Actual + + + Outdated + + + + + + + + + + Visible in the user interface. + + + + Available to external clients using API tokens. + + + + Available to MCP clients when token scopes allow it. + + + + + + Cancel + + Save metadata + + + + This permanently removes all secrets and versions. Audit records remain.
This permanently removes all secrets and versions. Audit records remain.