Pre Merge pull request !454 from 还俗二师兄/develop

pull/454/MERGE
还俗二师兄 2024-04-26 03:47:10 +00:00 committed by Gitee
commit 50cfa16feb
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@
} else {
key = isArray ? value : key;
}
optionList.push(sprintf("<option value='" + key + "' %s>" + value + "</option>", key == vObjCol.defaultValue ? 'selected' : ''));
optionList.push(sprintf("<option value='" + key + "' %s>" + value + "</option>", vObjCol.defaultValue && key == vObjCol.defaultValue ? 'selected' : ''));
});
return optionList;
};