From 54e98b6128c90eed16a815007e88366f92b93ce4 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Tue, 20 Jun 2023 10:36:54 -0500 Subject: [PATCH] fix: sign in post working --- components/UserProfile/CallbackFeedback.vue | 21 +++++++++------------ composables/services/webgui.ts | 3 ++- helpers/urls.ts | 2 +- store/account.ts | 4 +++- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/components/UserProfile/CallbackFeedback.vue b/components/UserProfile/CallbackFeedback.vue index c0337e964..d23812253 100644 --- a/components/UserProfile/CallbackFeedback.vue +++ b/components/UserProfile/CallbackFeedback.vue @@ -23,18 +23,17 @@ const { updating, updateSuccess } = storeToRefs(accountStore); const { callbackLoading } = storeToRefs(callbackActionsStore); const { keyUrl, installing, success } = storeToRefs(installKeyStore); -const heading = computed(() => { - callbackLoading.value ? 'Performing actions' : 'Finished performing actions'; -}); - -const subheading = computed(() => { - callbackLoading.value ? 'Please keep this window open' : ''; -}); +const heading = computed(() => callbackLoading.value ? 'Performing actions' : 'Finished performing actions'); +const subheading = computed(() => callbackLoading.value ? 'Please keep this window open' : ''); const close = () => { if (callbackLoading.value) return console.debug('[close] not allowed'); callbackActionsStore.closeCallbackFeedback(); }; +// @close="close" +// :show-close-x="!callbackLoading" + +const reload = () => window.location.reload(); const { text, copy, copied, isSupported } = useClipboard({ source: keyUrl.value }); @@ -42,11 +41,9 @@ const { text, copy, copied, isSupported } = useClipboard({ source: keyUrl.value