Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit 13abfd2

Browse files
Fix typing error
1 parent 5a2da47 commit 13abfd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/alfresco-core-rest-api/src/ApiClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@
423423
case 'String':
424424
return String(data);
425425
case 'Date':
426-
return date ? this.parseDate(String(data)) : null;
426+
return data ? this.parseDate(String(data)) : null;
427427
default:
428428
if (type === Object) {
429429
// generic object, return directly

0 commit comments

Comments
 (0)