fix(picker): run lint

This commit is contained in:
José Rio
2025-07-17 16:32:34 +01:00
parent 3626302d32
commit 74710d4cf6
2 changed files with 1 additions and 2 deletions

View File

@@ -129,7 +129,7 @@ export class PickerColumnOption implements ComponentInterface {
['option-disabled']: disabled,
})}
>
<div class={"picker-column-option-button"} role="button" aria-label={ariaLabel} onClick={() => this.onClick()}>
<div class={'picker-column-option-button'} role="button" aria-label={ariaLabel} onClick={() => this.onClick()}>
<slot></slot>
</div>
</Host>

View File

@@ -654,7 +654,6 @@ export class PickerColumn implements ComponentInterface {
return el ? el.getAttribute('aria-label') ?? el.innerText : '';
};
render() {
const { color, disabled, isActive, numericInput } = this;
const theme = getIonTheme(this);