]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: update new issue url in scheduler error message
authorEvan You <yyx990803@gmail.com>
Tue, 26 Dec 2023 08:15:24 +0000 (16:15 +0800)
committerEvan You <yyx990803@gmail.com>
Tue, 26 Dec 2023 08:15:24 +0000 (16:15 +0800)
packages/runtime-core/src/errorHandling.ts

index aff4f5567fab08ee6738267c740a846793d907de..d2438ba8d568a08a9c53f276b29d3a153ab8e252 100644 (file)
@@ -55,7 +55,7 @@ export const ErrorTypeStrings: Record<LifecycleHooks | ErrorCodes, string> = {
   [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