Fixed npe
parent
06b58c9444
commit
e9f07c5e3d
|
@ -172,7 +172,7 @@ const classes = {
|
||||||
'p-focus': state.focused || state.overlayVisible
|
'p-focus': state.focused || state.overlayVisible
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
input: ({ props }) => ['p-inputtext p-component', { 'p-variant-filled': props.variant ? props.variant === 'filled' : instance.$primevue.config.inputStyle === 'filled' }],
|
input: ({ props, instance }) => ['p-inputtext p-component', { 'p-variant-filled': props.variant ? props.variant === 'filled' : instance.$primevue.config.inputStyle === 'filled' }],
|
||||||
dropdownButton: 'p-datepicker-trigger',
|
dropdownButton: 'p-datepicker-trigger',
|
||||||
inputIcon: 'p-datepicker-trigger-icon',
|
inputIcon: 'p-datepicker-trigger-icon',
|
||||||
panel: ({ instance, props, state }) => [
|
panel: ({ instance, props, state }) => [
|
||||||
|
|
Loading…
Reference in New Issue