Feature: Create Event - First Step Frontend #17

Merged
igorpropisnov merged 20 commits from feature/create-event into main 2024-08-22 14:58:36 +02:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 235edd247c - Show all commits

View File

@ -208,12 +208,13 @@ export class DropdownComponent implements ControlValueAccessor, Validator {
public onFocus(): void {
this.filteredItems.set(this.items());
this.markAsTouched();
}
public onBlur(): void {
if (!this.isMouseInDropdown) {
if (!this.isMouseInDropdown()) {
this.closeDropdown();
this.onTouched();
this.markAsTouched();
}
}