]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Improved error message when no date adapter provided (#9147)
authorEvert Timberg <evert.timberg+github@gmail.com>
Sat, 22 May 2021 12:59:02 +0000 (08:59 -0400)
committerGitHub <noreply@github.com>
Sat, 22 May 2021 12:59:02 +0000 (08:59 -0400)
src/core/core.adapters.js

index 78fad868f080f918f6af50ea9a6720a2a45564a5..254091602fc405e99aa0bbf8b0d1a28c00ed9b06 100644 (file)
@@ -8,7 +8,7 @@
  * @return {*}
  */
 function abstract() {
-  throw new Error('This method is not implemented: either no adapter can be found or an incomplete integration was provided.');
+  throw new Error('This method is not implemented: Check that a complete date adapter is provided.');
 }
 
 /**