mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed npe
This commit is contained in:
parent
06b58c9444
commit
e9f07c5e3d
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ const classes = {
|
|||
'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',
|
||||
inputIcon: 'p-datepicker-trigger-icon',
|
||||
panel: ({ instance, props, state }) => [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue