Skip to content
Snippets Groups Projects
Verified Commit 7e63f288 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

feat: new calendar control #296

parent 3b9b2861
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ class DataFetchError extends Error { ...@@ -33,7 +33,7 @@ class DataFetchError extends Error {
constructor(message, response) { constructor(message, response) {
super(message); super(message);
let body = null let body = null;
if (response instanceof Response) { if (response instanceof Response) {
body = response.text(); body = response.text();
...@@ -45,7 +45,7 @@ class DataFetchError extends Error { ...@@ -45,7 +45,7 @@ class DataFetchError extends Error {
this[internalSymbol] = { this[internalSymbol] = {
response: response, response: response,
body : body body: body,
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment