Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
fix(base-resource-select-input): If type is select change loadAll to …
Browse files Browse the repository at this point in the history
…true
  • Loading branch information
EndyKaufman committed Oct 30, 2017
1 parent c3cdbc3 commit 85d8452
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ export class BaseResourceSelectInputComponent extends BaseComponent {
this.inputReadonly = true;
}
if (this.loadAll === undefined) {
this.loadAll = false;
if (this.select) {
this.loadAll = true;
} else {
this.loadAll = false;
}
}
if (this.inputElement) {
this.inputElement.hardValue = this.hardValue;
Expand Down

0 comments on commit 85d8452

Please # to comment.