Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ashklianko committed Oct 21, 2024
1 parent 9ee7d2e commit fef62a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/assets/admin/common/js/form/FormContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,22 @@ export class FormContextBuilder {

validationErrors: ValidationError[];

public setShowEmptyFormItemSetOccurrences(value: boolean): FormContextBuilder {
public setShowEmptyFormItemSetOccurrences(value: boolean): this {
this.showEmptyFormItemSetOccurrences = value;
return this;
}

public setFormState(value: FormState): FormContextBuilder {
public setFormState(value: FormState): this {
this.formState = value;
return this;
}

public setLanguage(lang: string): FormContextBuilder {
public setLanguage(lang: string): this {
this.language = lang;
return this;
}

public setValidationErrors(value: ValidationError[]): FormContextBuilder {
public setValidationErrors(value: ValidationError[]): this {
this.validationErrors = value;
return this;
}
Expand Down

0 comments on commit fef62a8

Please sign in to comment.