Skip to content

Commit

Permalink
添加注释
Browse files Browse the repository at this point in the history
  • Loading branch information
monkey committed Nov 3, 2022
1 parent 75ca69d commit 94ade44
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/sula/src/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ const RefTable: React.FunctionComponent<TableProps> = (props, ref) => {
const filterFields = Object.keys(filterValues).filter(item => {
let formFields = props.queryFormFields || [];
if (formFields.find(field => item === field.name)?.notShowLabel) return false;
// 自定义扩展字段不展示查询label
if (item === 'extensionFields') return false;
return !judgeIsEmpty(filterValues[item]);
});
Expand Down

0 comments on commit 94ade44

Please sign in to comment.