Browse Source

fix(descriptions): let breakpoint to be partial (#3958)

pull/3959/head
Evont Ng 4 years ago committed by GitHub
parent
commit
1fb65215a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/descriptions/index.tsx

2
components/descriptions/index.tsx

@ -42,7 +42,7 @@ export const DescriptionsItem = defineComponent({
},
});
const DEFAULT_COLUMN_MAP: Record<Breakpoint, number> = {
const DEFAULT_COLUMN_MAP: Partial<Record<Breakpoint, number>> = {
xxl: 3,
xl: 3,
lg: 3,

Loading…
Cancel
Save