From 8e727d62aba2337b091e4adde1422bf691f61029 Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 26 Dec 2023 16:15:24 +0800 Subject: [PATCH] chore: update new issue url in scheduler error message --- 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 aff4f5567..d2438ba8d 100644 --- a/packages/runtime-core/src/errorHandling.ts +++ b/packages/runtime-core/src/errorHandling.ts @@ -55,7 +55,7 @@ export const ErrorTypeStrings: Record = { [ErrorCodes.ASYNC_COMPONENT_LOADER]: 'async component loader', [ErrorCodes.SCHEDULER]: 'scheduler flush. This is likely a Vue internals bug. ' + - 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core' + 'Please open an issue at https://github.com/vuejs/core .' } export type ErrorTypes = LifecycleHooks | ErrorCodes