Skip to content

Commit

Permalink
“附件”系统对象列表视图去掉“历史版本”字段
Browse files Browse the repository at this point in the history
实际上是修复了 extra_columns属性功能存在的bug。
steedos/steedos-platform#5839
  • Loading branch information
Flyingliao committed Dec 12, 2023
1 parent b528a9a commit 694d1c6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,9 @@ export async function getTableColumns(fields, options){
const allowEdit = options.permissions?.allowEdit && !options.isLookup && options.enable_inline_edit != false;

for (const field of fields) {
if(field.hidden || field.extra){
continue;
}
//增加quickEdit属性,实现快速编辑
const quickEditSchema = allowEdit ? await getQuickEditSchema(field, options) : allowEdit;
let className = "";
Expand Down

0 comments on commit 694d1c6

Please sign in to comment.