mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-12-25 04:43:48 +01:00
Fix error assignmenmt
This commit is contained in:
parent
ea01716ed6
commit
3cd55d14c7
@ -49,10 +49,10 @@ export const fetchMapById = (id: number): MapLoadResult => {
|
||||
|
||||
// If the map can not be loaded, create an error object.
|
||||
let map: MapInfo;
|
||||
let errorMsg: ErrorInfo;
|
||||
let errorMsg: ErrorInfo = error;
|
||||
if (!isLoading) {
|
||||
// Sanitize error structure ...
|
||||
if (error) {
|
||||
if (errorMsg) {
|
||||
errorMsg = Object.keys(error).length !== 0 ? error : null;
|
||||
}
|
||||
// Seach for object...
|
||||
|
Loading…
Reference in New Issue
Block a user