From 806bf8241cb7d91fcd53472278586e34e6422884 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sun, 23 Jul 2023 12:46:41 +0800 Subject: [PATCH] chore: update prompts of channel config page --- web/src/pages/Channel/EditChannel.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/pages/Channel/EditChannel.js b/web/src/pages/Channel/EditChannel.js index bcf2eb85..7833c7f3 100644 --- a/web/src/pages/Channel/EditChannel.js +++ b/web/src/pages/Channel/EditChannel.js @@ -220,7 +220,7 @@ const EditChannel = () => { label='名称' required name='name' - placeholder={'请输入名称'} + placeholder={'请为渠道命名'} onChange={handleInputChange} value={inputs.name} autoComplete='new-password' @@ -229,7 +229,7 @@ const EditChannel = () => { { { { label='密钥' name='key' required - placeholder={inputs.type === 15 ? "请输入 access token,当前版本暂不支持自动刷新,请每 30 天更新一次" : '请输入密钥'} + placeholder={inputs.type === 15 ? "请输入 access token,当前版本暂不支持自动刷新,请每 30 天更新一次" : '请输入渠道对应的鉴权密钥'} onChange={handleInputChange} value={inputs.key} autoComplete='new-password' @@ -346,7 +346,7 @@ const EditChannel = () => {