This commit is contained in:
root 2025-07-11 16:40:03 +08:00
parent a03e57a4d9
commit fa81b06fc4
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ const ProjectMaterialsCenter: React.FC<ProjectMaterialsCenterProps> = ({
})
// 类型过滤
let matchesType = material.tags.includes(filterType)
let matchesType = filterType === 'all' ? true : material.tags.includes(filterType)
// 使用状态过滤
let matchesUsage = true