style cols

This commit is contained in:
Tykayn 2025-09-23 18:54:13 +02:00 committed by tykayn
parent 63f98a48ed
commit 334b6c90cf
7 changed files with 35 additions and 36 deletions

View file

@ -55,7 +55,11 @@ export class MultiSelector {
}
onClickInput() {
if (this.disabled) return;
this.displayDropdown = !this.displayDropdown
if (this.disabled) {
console.info('disabled input');
return;
}
this.displayDropdown = !this.displayDropdown;
console.log('Toggled dropdown:', this.displayDropdown);
}
}