fix: resolved cookie js bug on import page (#34139)
This commit is contained in:
@@ -332,7 +332,7 @@ define(
|
||||
* @return {JSON} the data of the previous import
|
||||
*/
|
||||
storedImport: function() {
|
||||
return JSON.parse($.cookie(COOKIE_NAME));
|
||||
return JSON.parse($.cookie(COOKIE_NAME) || null);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user