From ea4b100948033c22b4f6f241df274b278e1379f2 Mon Sep 17 00:00:00 2001 From: janrywang Date: Wed, 16 Feb 2022 20:03:17 +0800 Subject: [PATCH] docs: update issue-helper api --- docs/guide/issue-helper.md | 2 +- docs/guide/issue-helper.zh-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/issue-helper.md b/docs/guide/issue-helper.md index a354b3d0770..34d7b9555a1 100644 --- a/docs/guide/issue-helper.md +++ b/docs/guide/issue-helper.md @@ -65,7 +65,7 @@ const form = createForm({ effects() { onFieldMount('version', async (field) => { const { versions: unsort } = await fetch( - 'https://registry.nlark.com/@formily/core' + 'https://registry.npmmirror.com/@formily/core' ).then((res) => res.json()) const versions = Object.keys(unsort).sort((v1, v2) => diff --git a/docs/guide/issue-helper.zh-CN.md b/docs/guide/issue-helper.zh-CN.md index 3e69679cc25..78640307961 100644 --- a/docs/guide/issue-helper.zh-CN.md +++ b/docs/guide/issue-helper.zh-CN.md @@ -65,7 +65,7 @@ const form = createForm({ effects() { onFieldMount('version', async (field) => { const { versions: unsort } = await fetch( - 'https://registry.nlark.com/@formily/core' + 'https://registry.npmmirror.com/@formily/core' ).then((res) => res.json()) const versions = Object.keys(unsort).sort((v1, v2) =>