Skip to content

Commit

Permalink
fix: set list-view's textField prop to any in api.ts (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
YufJi authored Feb 1, 2024
1 parent 44e4aaf commit 2ff04d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-vusion/components/list-view/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ namespace nasl.ui {
concept: "PropertySelectSetter"
}
})
textField: (item: T) => nasl.core.String = ((item: any) => item.text) as any;
textField: (item: T) => any = ((item: any) => item.text) as any;
@Prop({
group: '数据属性',
title: '值',
Expand Down

0 comments on commit 2ff04d6

Please sign in to comment.