🐛 Fix profile page

This commit is contained in:
2025-08-23 17:34:01 +08:00
parent 0251697951
commit f401ffbf81
2 changed files with 3 additions and 2 deletions

View File

@@ -345,7 +345,7 @@
"accountSettingsHelpContent": "此页面允许您管理您的帐户安全性、隐私和其他设置。如果您需要帮助,请联系管理员。", "accountSettingsHelpContent": "此页面允许您管理您的帐户安全性、隐私和其他设置。如果您需要帮助,请联系管理员。",
"unauthorized": "未授权", "unauthorized": "未授权",
"unauthorizedHint": "您未登录或会话已过期,请重新登录。", "unauthorizedHint": "您未登录或会话已过期,请重新登录。",
"publisherBelongsTo": "属于", "publisherBelongsTo": "属于 {}",
"postContent": "内容", "postContent": "内容",
"postSettings": "设置", "postSettings": "设置",
"postPublisherUnselected": "未指定发布者", "postPublisherUnselected": "未指定发布者",

View File

@@ -196,7 +196,8 @@ class PublisherProfileScreen extends HookConsumerWidget {
'publisherBelongsTo'.tr(args: ['@${data.account!.name}']), 'publisherBelongsTo'.tr(args: ['@${data.account!.name}']),
).fontSize(14), ).fontSize(14),
], ],
).opacity(0.85).padding(bottom: 6), ).opacity(0.85),
const Gap(4),
if (data.type == 0 && data.account != null) if (data.type == 0 && data.account != null)
AccountStatusWidget( AccountStatusWidget(
uname: data.account!.name, uname: data.account!.name,