From: Evert Timberg Date: Sat, 22 May 2021 12:59:02 +0000 (-0400) Subject: Improved error message when no date adapter provided (#9147) X-Git-Tag: v3.3.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=087f9c30c57d1b93ba11deb1471eb9c561f05c9c;p=thirdparty%2FChart.js.git Improved error message when no date adapter provided (#9147) --- diff --git a/src/core/core.adapters.js b/src/core/core.adapters.js index 78fad868f..254091602 100644 --- a/src/core/core.adapters.js +++ b/src/core/core.adapters.js @@ -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.'); } /**