修复显示问题
This commit is contained in:
parent
d897b4b1aa
commit
adc60b029e
|
@ -198,7 +198,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => {
|
||||||
<div className="relative rounded-full">
|
<div className="relative rounded-full">
|
||||||
<Badge
|
<Badge
|
||||||
status="error"
|
status="error"
|
||||||
content={count > 99 ? "+99" : count}
|
content={count > 99 ? "99+" : count}
|
||||||
className="text-lg"
|
className="text-lg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -259,7 +259,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => {
|
||||||
<Badge
|
<Badge
|
||||||
status="error"
|
status="error"
|
||||||
content={
|
content={
|
||||||
data.contact_cs_urc > 99 ? "+99" : data.contact_cs_urc
|
data.contact_cs_urc > 99 ? "99+" : data.contact_cs_urc
|
||||||
}
|
}
|
||||||
className="text-lg"
|
className="text-lg"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -72,7 +72,7 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) {
|
||||||
<OwnIcon lazy className="w-8 h-8" src="/icons/streamblur.png" />
|
<OwnIcon lazy className="w-8 h-8" src="/icons/streamblur.png" />
|
||||||
{!!noticeCount && (
|
{!!noticeCount && (
|
||||||
<Badge
|
<Badge
|
||||||
content={noticeCount > 99 ? "+99" : noticeCount}
|
content={noticeCount > 99 ? "99+" : noticeCount}
|
||||||
className="absolute top-0 right-0 z-10"
|
className="absolute top-0 right-0 z-10"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
@ -83,7 +83,7 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) {
|
||||||
<OwnIcon lazy className="w-8 h-8" src="/icons/streamfocus.png" />
|
<OwnIcon lazy className="w-8 h-8" src="/icons/streamfocus.png" />
|
||||||
{!!noticeCount && (
|
{!!noticeCount && (
|
||||||
<Badge
|
<Badge
|
||||||
content={noticeCount > 99 ? "+99" : noticeCount}
|
content={noticeCount > 99 ? "99+" : noticeCount}
|
||||||
className="absolute top-0 right-0 z-10"
|
className="absolute top-0 right-0 z-10"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in New Issue