Browse Source

Merge branch 'feature_220531_multichain' into dev_1.0.7

nieyuge 2 years ago
parent
commit
b2bd6d6d52
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/view/iframe/publish/give-dialog.vue

+ 3 - 1
src/view/iframe/publish/give-dialog.vue

@@ -1495,7 +1495,9 @@ const getCurrencyInfo = async () => {
         })
         })
 
 
         getChromeStorage('selectCurrencyList', (res) => {
         getChromeStorage('selectCurrencyList', (res) => {
-            tempCurrentCurrencyList.value = res;
+            if (showCurrencySelect.value === false) {
+                tempCurrentCurrencyList.value = res;
+            }
         })
         })
     }
     }
 }
 }