Преглед изворни кода

chore: update new issue url in scheduler error message

Evan You пре 2 година
родитељ
комит
8e727d62ab
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/runtime-core/src/errorHandling.ts

+ 1 - 1
packages/runtime-core/src/errorHandling.ts

@@ -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