Change password - #7368
Conversation
Coverage Report
File CoverageNo changed files found. |
|
✅ Docs preview deployed 🔗 👀 Click here to visit preview 🕒 Time: 2026-09-08 16:49:36 (UTC+8) |
|
✅ Admin Preview Image Ready! 🕒 Time: 2026-09-08 16:52:30 (UTC+8) |
|
✅ Build and publish successful - Preview fastgpt Image: 🕒 Time: 2026-09-08 16:53:04 (UTC+8) |
b17d46d to
78d75ae
Compare
78d75ae to
5da1193
Compare
f364133 to
8dedd68
Compare
f3627ab to
d419bc3
Compare
|
✅ Docs preview image built successfully for Automatic publishing is disabled for this PR. A maintainer can comment:
to publish the image from this exact build. |
|
✅ Preview images built successfully for Automatic publishing is disabled for this PR. A maintainer can comment:
to publish the images from this exact build. |
d419bc3 to
c85ecfa
Compare
85e2c0f to
3ab3981
Compare
1f5ce55 to
9fe6742
Compare
|
P2: Add direct success coverage for Pro verification-material creation. |
9fe6742 to
dcef5ff
Compare
resolved |
f645324 to
75c469b
Compare
5044c36 to
cd995f1
Compare
cd995f1 to
c4b2213
Compare
| {t( | ||
| createFailed | ||
| ? 'common:password_wechat_load_failed' | ||
| : 'common:password_wechat_expired' | ||
| )} |
There was a problem hiding this comment.
[P2] i18n key 不能放在条件表达式里
这里的 t(createFailed ? 'common:password_wechat_load_failed' : 'common:password_wechat_expired') 不符合项目要求:翻译 key 必须在最终调用处保持 t('ns:literal_key'),否则语言包清理脚本可能无法识别引用,误删 key,导致二维码加载失败/过期时裸显 key。当前三种语言里已有翻译也不能消除后续清理风险。请把条件判断移到 t 调用外:
| {t( | |
| createFailed | |
| ? 'common:password_wechat_load_failed' | |
| : 'common:password_wechat_expired' | |
| )} | |
| {createFailed | |
| ? t('common:password_wechat_load_failed') | |
| : t('common:password_wechat_expired')} |
基于unsubscribe账号注销分支,可以等账号注销合并后再review或合并