Fixed InputNumber border-radius

pull/310/head
cagataycivici 2020-04-29 21:54:42 +03:00
parent 9645b2a4dc
commit 284e61245b
1 changed files with 3 additions and 3 deletions

View File

@ -559,9 +559,9 @@ export default {
return ['p-inputnumber p-component', {
'p-inputwrapper-filled': this.filled,
'p-inputwrapper-focus': this.focused,
'p-inputnumber-buttons-stacked': this.buttonLayout === 'stacked',
'p-inputnumber-buttons-horizontal': this.buttonLayout === 'horizontal',
'p-inputnumber-buttons-vertical': this.buttonLayout === 'vertical'
'p-inputnumber-buttons-stacked': this.showButtons && this.buttonLayout === 'stacked',
'p-inputnumber-buttons-horizontal': this.showButtons && this.buttonLayout === 'horizontal',
'p-inputnumber-buttons-vertical': this.showButtons && this.buttonLayout === 'vertical'
}];
},
upButtonClass() {