aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/components/Settings/PkiSettings.vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/components/Settings/PkiSettings.vue')
-rw-r--r--front-end/src/components/Settings/PkiSettings.vue5
1 files changed, 4 insertions, 1 deletions
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();
})
}