Skip to content

Commit

Permalink
fix(CITAS): select profesional despues de clonar (#3046)
Browse files Browse the repository at this point in the history
  • Loading branch information
negro89 authored Jul 26, 2024
1 parent 90d7535 commit 425d872
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/directives/profesionales-select.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export class SelectProfesionalesDirective implements OnInit, OnDestroy {
});
$event.callback(result);
});
} else if (inputText.length === 0) {
$event.callback([]);
} else {
const value = (this.plexSelect as any).value;
$event.callback(value);
Expand Down

0 comments on commit 425d872

Please sign in to comment.