wenliming vor 2 Jahren
Ursprung
Commit
a3bc3b2a90
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      src/view/popup/currency-detail.vue

+ 3 - 1
src/view/popup/currency-detail.vue

@@ -198,10 +198,12 @@ const showSendGiveawayDialog = (params = null) => {
   } else {
       let currencyInfo = params ? params : currencyInfo.value;
       setLocalSelectCurrencyInfo(currencyInfo)
-      chrome.runtime.sendMessage({ 
+      setTimeout(() => {
+        chrome.runtime.sendMessage({ 
           actionType: "POPUP_SHOW_DENET_PUBLISH_DIALOG", 
           data: { } 
       }, () => { });
+      }, 600)
       currencyOpertionType = '';
   }
 };