mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
fix Et2Number shows scroll-buttons if disabled and allows to in/decrement value
This commit is contained in:
parent
0da4a9e099
commit
b493063e40
@ -184,6 +184,7 @@ export class Et2Number extends Et2Textbox
|
||||
|
||||
private handleScroll(e)
|
||||
{
|
||||
if (this.disabled) return;
|
||||
const old_value = this.value;
|
||||
let min = parseFloat(this.min ?? Number.MIN_SAFE_INTEGER);
|
||||
if(Number.isNaN(min))
|
||||
@ -208,7 +209,7 @@ export class Et2Number extends Et2Textbox
|
||||
return '';
|
||||
}
|
||||
|
||||
return html`
|
||||
return this.disabled ? '' : html`
|
||||
<et2-button-scroll class="et2-number__scrollbuttons" slot="suffix"
|
||||
part="scroll"
|
||||
@et2-scroll=${this.handleScroll}></et2-button-scroll>`;
|
||||
|
Loading…
Reference in New Issue
Block a user