fix: function select missing.

This commit is contained in:
root
2021-06-16 11:12:31 +08:00
parent f51a6587e8
commit 0b16ec99cd
2 changed files with 14 additions and 13 deletions

View File

@@ -191,7 +191,7 @@ var stopAllContract = function () {
};
var selectContractToExecute = function () {
var value = selectedContractAtExecute.value;
if (!value && value !== "选择实例") {
if (value && value !== "选择实例") {
var exportedFunction = mainVue.contracts[value].exportedFunctions;
mainVue.contractFunctions = exportedFunction;