From 1081ef80896293979427be1e649894180e47654e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Schwert?= Date: Thu, 16 Jan 2020 03:50:06 +0100 Subject: [PATCH] chore: fix error reporting URL to point to vue-next (#624) [ci skip] --- packages/runtime-core/src/errorHandling.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/errorHandling.ts b/packages/runtime-core/src/errorHandling.ts index 29137a4e..5d5592fb 100644 --- a/packages/runtime-core/src/errorHandling.ts +++ b/packages/runtime-core/src/errorHandling.ts @@ -49,7 +49,7 @@ export const ErrorTypeStrings: Record = { [ErrorCodes.FUNCTION_REF]: 'ref function', [ErrorCodes.SCHEDULER]: 'scheduler flush. This is likely a Vue internals bug. ' + - 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue' + 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next' } export type ErrorTypes = LifecycleHooks | ErrorCodes