v1.2.41 修复一尘看板显示真实发布者名称
This commit is contained in:
parent
5da876a193
commit
b2b30cc54e
|
|
@ -1 +1 @@
|
||||||
v1.2.41
|
VERSION=1.2.41
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<title>甲辰收藏 v0.0.0</title>
|
<title>甲辰收藏 v1.2.41</title>
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" type="image/png" href="/static/icons/favicon.png" />
|
<link rel="icon" type="image/png" href="/static/icons/favicon.png" />
|
||||||
|
|
|
||||||
|
|
@ -473,7 +473,7 @@ export default function News() {
|
||||||
</div>
|
</div>
|
||||||
{/* 创建日期 + 用户名 */}
|
{/* 创建日期 + 用户名 */}
|
||||||
<div style={{ color: '#64748b', fontSize: '12px', marginBottom: '8px' }}>
|
<div style={{ color: '#64748b', fontSize: '12px', marginBottom: '8px' }}>
|
||||||
📅 {formatDate(item.created_at)} | 👤 {item.user_name || '匿名用户'}
|
📅 {formatDate(item.created_at)} | 👤 {(item.content && item.content.match(/发布者: (.+)/)?.[1]) || item.user_name || '匿名用户'}
|
||||||
</div>
|
</div>
|
||||||
{/* 号码特征 */}
|
{/* 号码特征 */}
|
||||||
{features && (
|
{features && (
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue