fix: 修复FesApi的bug

This commit is contained in:
harrywan 2021-05-02 19:45:15 +08:00
parent 3713d4b023
commit a476055881
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@webank/fes-core",
"version": "0.4.6",
"version": "0.4.7",
"description": "一个好用的前端管理台快速开发框架",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"

View File

@ -143,7 +143,7 @@ const success = function (response) {
throw error;
}
// eslint-disable-next-line no-undefined
return (result === undefined || result === null) || {};
return (result === undefined || result === null) ? {} : result;
};
const fail = function (error) {