feat: remove channel ID and username search fields from usage log filters

This commit is contained in:
xiezhouwei 2026-06-23 14:11:36 +08:00
parent b6293434e9
commit 1e3ce2c0d2
1 changed files with 1 additions and 21 deletions

View File

@ -31,7 +31,6 @@ const LogsFilters = ({
formApi,
setLogType,
loading,
isAdminUser,
t,
}) => {
return (
@ -102,26 +101,7 @@ const LogsFilters = ({
size='small'
/>
{isAdminUser && (
<>
<Form.Input
field='channel'
prefix={<IconSearch />}
placeholder={t('渠道 ID')}
showClear
pure
size='small'
/>
<Form.Input
field='username'
prefix={<IconSearch />}
placeholder={t('用户名称')}
showClear
pure
size='small'
/>
</>
)}
</div>
{/* 操作按钮区域 */}