File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
plugins/core/webview/src/q-ui/components Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export default defineComponent({
8686 },
8787 computed: {
8888 isWaitingResponse() {
89+ this .errorMessage = ' '
8990 const profileResult = this .$store .state .listProfilesResult
9091 if (profileResult instanceof ListProfilePendingResult ) {
9192 return true
@@ -95,6 +96,7 @@ export default defineComponent({
9596 this .availableProfiles = profileResult .profiles
9697 } else if (profileResult instanceof ListProfileFailureResult ) {
9798 this .errorMessage = GENERIC_PROFILE_LOAD_ERROR
99+ this .isRefreshing = false
98100 } else {
99101 // should not be this path
100102 this .errorMessage = " Unexpected error happenede while loading Q Webview page"
@@ -124,7 +126,7 @@ export default defineComponent({
124126 },
125127 handleRetryClick() {
126128 this .isRefreshing = true
127- window .ideApi .postMessage ({command: ' prepareUi ' })
129+ window .ideApi .postMessage ({command: ' listProfiles ' })
128130 },
129131 handleSignoutClick() {
130132 window .ideApi .postMessage ({command: ' signout' })
You can’t perform that action at this time.
0 commit comments