diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json
index 0fc452a7b2..89f6a278a2 100644
--- a/docs/en/docs-nav.json
+++ b/docs/en/docs-nav.json
@@ -1830,6 +1830,10 @@
"text": "Card",
"path": "framework/ui/angular/card-component.md"
},
+ {
+ "text": "Dynamic Forms",
+ "path": "framework/ui/angular/dynamic-form-module.md"
+ },
{
"text": "Password Complexity Indicator",
"path": "framework/ui/angular/password-complexity-indicator-component.md"
diff --git a/docs/en/framework/ui/angular/dynamic-form-module.md b/docs/en/framework/ui/angular/dynamic-form-module.md
index 7c1400d8aa..21f0fb1c96 100644
--- a/docs/en/framework/ui/angular/dynamic-form-module.md
+++ b/docs/en/framework/ui/angular/dynamic-form-module.md
@@ -50,8 +50,8 @@ import { FormFieldConfig } from '@abp/ng.components/dynamic-form';
[submitButtonText]="'Submit'"
[showCancelButton]="true"
(onSubmit)="handleSubmit($event)"
- (formCancel)="handleCancel()">
-
+ (formCancel)="handleCancel()"
+ />
`,
})
export class UserFormComponent {
@@ -570,8 +570,8 @@ const formFields: FormFieldConfig[] = [
-
+ (onSubmit)="handleSubmit($event)"
+ />
`,
})
export class MyComponent {
@@ -609,8 +609,8 @@ You can access the form instance using the `exportAs` property and template refe
-
+ (onSubmit)="handleSubmit($event)"
+ />
`,
@@ -709,8 +709,8 @@ import { FormFieldConfig } from '@abp/ng.components/dynamic-form';
[showCancelButton]="true"
[submitInProgress]="isSubmitting"
(onSubmit)="handleSubmit($event)"
- (formCancel)="handleCancel()">
-
+ (formCancel)="handleCancel()"
+ />
`,
})