Skip to content

Commit

Permalink
fix: 关闭antdv的默认分页
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Oct 30, 2023
1 parent 1026f52 commit dc36caa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/fast-crud/src/use/default-crud-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ export default {
border: true,
bordered: true,
singleLine: false, //naive
editable: { enabled: false }
editable: { enabled: false },
pagination: false //antdv 关闭默认分页
},
toolbar: {
compact: true
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/ui-interface/src/ui-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,8 @@ export interface ColorPickerCI extends CI {
}

export type ButtonGroupBuilderOptions = {} & BindBuilderOptions;
export type ButtonGroupCI = CI<ButtonGroupBuilderOptions>;
export interface ButtonGroupCI extends CI<ButtonGroupBuilderOptions> {}

export interface Icons {
refresh: string;
search: string;
Expand Down

0 comments on commit dc36caa

Please sign in to comment.