Skip to content

Commit

Permalink
Update boolean-input.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
heinerwalter authored Oct 29, 2024
1 parent da693d1 commit 5dd4b0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class BooleanInputComponent extends InputBaseWithValue<boolean> {
protected get radioInputDataSource(): RadioInputDataSourceOption[] {
const yesOption: RadioInputDataSourceOption = { value: true, name: this.yesLabel || 'Ja' };
const noOption: RadioInputDataSourceOption = { value: false, name: this.noLabel || 'Nein' };
if (!allowIndeterminate)
if (!this.allowIndeterminate)
return [yesOption, noOption];

const indeterminateOption: RadioInputDataSourceOption = { value: undefined, name: this.indeterminateLabel || 'Keine Angabe' };
Expand Down

0 comments on commit 5dd4b0a

Please sign in to comment.