From 85a1e5b7cc5c99e97a2d4e99bbceb0d2139742ff Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 12 Mar 2024 22:05:16 -0400 Subject: ci: exciting bare-metal build process, os support, smaller packages --- front-end/src/components/Settings/PkiSettings.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'front-end/src/components/Settings') diff --git a/front-end/src/components/Settings/PkiSettings.vue b/front-end/src/components/Settings/PkiSettings.vue index dfa4cad..885b2cb 100644 --- a/front-end/src/components/Settings/PkiSettings.vue +++ b/front-end/src/components/Settings/PkiSettings.vue @@ -32,6 +32,8 @@ const removeKey = async (key: PkiPublicKey) => { title: 'Key Removed', text: `${key.kid} has been successfully removed` }) + + store.mfaRefreshMethods() }) } @@ -117,7 +119,8 @@ const onAddKey = async () => { text: result }) - hideAddKeyDialog() + hideAddKeyDialog(); + store.mfaRefreshMethods(); }) } -- cgit