-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed
Labels
Description
What problem does this feature solve?
更改 select option item 默认高度后,select 下拉列表高度计算异常
常规下拉列表
表格分页条数设置
What does the proposed API look like?
import { NzConfig, provideNzConfig } from 'ng-zorro-antd/core/config';
const ngZorroConfig: NzConfig = {
select: { nzOptionHeightPx: 40 },
};
@NgModule({
declarations: [AppComponent],
imports: [
CommonModule
],
providers: [
provideNzConfig(ngZorroConfig)
],
bootstrap: [AppComponent]
})
export class AppModule {}
