Skip to content

Commit

Permalink
fix(components/forms): document form error inputs as required (#2011) (
Browse files Browse the repository at this point in the history
  • Loading branch information
blackbaud-sky-build-user authored Feb 13, 2024
1 parent 9cfdcb6 commit e421859
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ import { SKY_FORM_ERRORS_ENABLED } from './form-errors-enabled-token';
export class SkyFormErrorComponent {
/**
* The name of the error.
* @required
*/
@Input({ required: true })
public errorName!: string;

/**
* The error message to display.
* @required
*/
@Input({ required: true })
public errorText!: string;
Expand Down

0 comments on commit e421859

Please sign in to comment.