Просмотр исходного кода

Merge branch 'feature_220531_multichain' into dev_1.0.7

nieyuge 2 лет назад
Родитель
Сommit
b2bd6d6d52
1 измененных файлов с 3 добавлено и 1 удалено
  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) => {
-            tempCurrentCurrencyList.value = res;
+            if (showCurrencySelect.value === false) {
+                tempCurrentCurrencyList.value = res;
+            }
         })
     }
 }