build and lint

This commit is contained in:
Liam DeBeasi
2023-12-01 15:42:29 -05:00
parent 2c773ed0e6
commit 3470c64e51
3 changed files with 5 additions and 7 deletions

View File

@@ -169,7 +169,9 @@ export class PickerColumn implements ComponentInterface {
*/
@Method()
async setValue(value?: string | number) {
if (this.value === value) { return; }
if (this.value === value) {
return;
}
this.value = value;
this.ionChange.emit(value);