Skip to content

Commit

Permalink
fix: update doc link
Browse files Browse the repository at this point in the history
  • Loading branch information
imaegoo committed Sep 8, 2023
1 parent f175155 commit 0ab519f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion demo/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<button class="button is-info" onclick="init()">加载 | Init</button>
</div>
<div class="field">
<a href="https://twikoo.js.org/quick-start.html#%E5%89%8D%E7%AB%AF%E9%83%A8%E7%BD%B2" target="_blank">如何集成到博客中?</a>
<a href="https://twikoo.js.org/frontend.html" target="_blank">如何集成到博客中?</a>
</div>
</div>
<div class="column">
Expand Down
2 changes: 1 addition & 1 deletion src/client/view/components/TkAdmin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a class="tk-admin-close" @click="onClose" v-html="iconClose"></a>
<div class="tk-login-title" v-if="needUpdate">
<div>{{ t('ADMIN_NEED_UPDATE') }}</div>
<a href="https://twikoo.js.org/quick-start.html" target="_blank">https://twikoo.js.org/quick-start.html</a>
<a href="https://twikoo.js.org/update.html" target="_blank">https://twikoo.js.org/update.html</a>
</div>
<div v-if="!needUpdate">
<div class="tk-login" v-if="!isLogin && isSetPassword">
Expand Down
2 changes: 1 addition & 1 deletion src/client/view/components/TkAdminComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="tk-admin-warn" v-if="clientVersion !== serverVersion">
<span>{{ t('ADMIN_CLIENT_VERSION') }}{{ clientVersion }},</span>
<span>{{ t('ADMIN_SERVER_VERSION') }}{{ serverVersion }},</span>
<span>请参考&nbsp;<a href="https://twikoo.js.org/quick-start.html#%E7%89%88%E6%9C%AC%E6%9B%B4%E6%96%B0" target="_blank">版本更新</a>&nbsp;进行升级</span>
<span>请参考&nbsp;<a href="https://twikoo.js.org/update.html" target="_blank">版本更新</a>&nbsp;进行升级</span>
</div>
<div class="tk-admin-comment-filter">
<el-input
Expand Down
2 changes: 1 addition & 1 deletion src/client/view/components/TkAdminConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="tk-admin-warn" v-if="clientVersion !== serverVersion">
<span>{{ t('ADMIN_CLIENT_VERSION') }}{{ clientVersion }},</span>
<span>{{ t('ADMIN_SERVER_VERSION') }}{{ serverVersion }},</span>
<span>请参考&nbsp;<a href="https://twikoo.js.org/quick-start.html#%E7%89%88%E6%9C%AC%E6%9B%B4%E6%96%B0" target="_blank">版本更新</a>&nbsp;进行升级</span>
<span>请参考&nbsp;<a href="https://twikoo.js.org/update.html" target="_blank">版本更新</a>&nbsp;进行升级</span>
</div>
<div class="tk-admin-config-groups">
<details class="tk-admin-config-group" v-for="settingGroup in settings" :key="settingGroup.name">
Expand Down
2 changes: 1 addition & 1 deletion src/server/function/twikoo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ exports.main = async (event, context) => {
res.message = '请更新 Twikoo 云函数至最新版本'
} else {
res.code = RES_CODE.SUCCESS
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/quick-start.html#%E5%89%8D%E7%AB%AF%E9%83%A8%E7%BD%B2 完成前端的配置'
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/frontend.html 完成前端的配置'
}
}
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion src/server/self-hosted/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ module.exports = async (request, response) => {
res.message = '请更新 Twikoo 云函数至最新版本'
} else {
res.code = RES_CODE.NO_PARAM
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/quick-start.html#%E5%89%8D%E7%AB%AF%E9%83%A8%E7%BD%B2 完成前端的配置'
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/frontend.html 完成前端的配置'
res.version = VERSION
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/server/self-hosted/mongo.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ module.exports = async (request, response) => {
res.message = '请更新 Twikoo 云函数至最新版本'
} else {
res.code = RES_CODE.NO_PARAM
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/quick-start.html#%E5%89%8D%E7%AB%AF%E9%83%A8%E7%BD%B2 完成前端的配置'
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/frontend.html 完成前端的配置'
res.version = VERSION
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/server/vercel/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ module.exports = async (request, response) => {
res.message = '请更新 Twikoo 云函数至最新版本'
} else {
res.code = RES_CODE.NO_PARAM
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/quick-start.html#%E5%89%8D%E7%AB%AF%E9%83%A8%E7%BD%B2 完成前端的配置'
res.message = 'Twikoo 云函数运行正常,请参考 https://twikoo.js.org/frontend.html 完成前端的配置'
res.version = VERSION
}
}
Expand Down

0 comments on commit 0ab519f

Please sign in to comment.