mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修复FesApi的bug
This commit is contained in:
parent
3713d4b023
commit
a476055881
@ -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"
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user