Merge remote-tracking branch 'origin/main' into anln

This commit is contained in:
al 2024-08-05 21:17:55 +08:00
commit 3e1860e88f
2 changed files with 2 additions and 1 deletions

View File

@ -399,7 +399,7 @@ const JoinContent = (props) => {
// //
const search = (value) => { const search = (value) => {
value.id value.id
? setShowData(data.filter((item) => item.info.id == value.id)) ? setShowData(data.filter((item) => item.baseInfo.id == value.id))
: setShowData(data); : setShowData(data);
}; };
// //

View File

@ -44,6 +44,7 @@ const StreamerTextMachineReviewContent = (props) => {
{data === "name" && <p>昵称</p>} {data === "name" && <p>昵称</p>}
{data === "bio" && <p>个性签名</p>} {data === "bio" && <p>个性签名</p>}
{data === "auto_response_message" && <p>私信自动回复</p>} {data === "auto_response_message" && <p>私信自动回复</p>}
{data === "profile" && <p>空间介绍</p>}
</div> </div>
), ),
}, },