Skip to content

Commit

Permalink
fix: Correct type overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
ChesneyJulian committed Jan 24, 2025
1 parent f061419 commit 637e555
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ember-core/src/components/form/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,12 @@ export interface FormSignature {
}

export default class Form extends Component<FormSignature> implements FormType {

@tracked
_didValidate = false;

@tracked
element!: HTMLElement;
declare element: HTMLElement;

staticValidations: Map<string, Wrapper[]>;
bindings: Map<string, Binding>;
Expand Down

0 comments on commit 637e555

Please sign in to comment.