diff --git a/src/app/modules/beteran/component/home.component.html b/src/app/modules/beteran/component/home.component.html index babdf3d..c2a6929 100644 --- a/src/app/modules/beteran/component/home.component.html +++ b/src/app/modules/beteran/component/home.component.html @@ -109,8 +109,9 @@
(0) + + + (0)
diff --git a/src/app/modules/beteran/compose/compose/comp-compose.component.html b/src/app/modules/beteran/compose/compose/comp-compose.component.html index a44b7ba..8ee40c9 100644 --- a/src/app/modules/beteran/compose/compose/comp-compose.component.html +++ b/src/app/modules/beteran/compose/compose/comp-compose.component.html @@ -32,9 +32,6 @@ 닉네임 - - 닉네임은 필수 입력입니다. - diff --git a/src/app/modules/beteran/compose/compose/customer-compose.component.html b/src/app/modules/beteran/compose/compose/customer-compose.component.html index acb549a..dae6145 100644 --- a/src/app/modules/beteran/compose/compose/customer-compose.component.html +++ b/src/app/modules/beteran/compose/compose/customer-compose.component.html @@ -46,7 +46,7 @@ class="example-element-row" [class.example-expanded-row]="expandedElement === element" (click)="expandedElement = expandedElement === element ? null : element" - style="cursor: default" + style="cursor: default; font-weight: bold" >
-
- + 제목 + + - 제목 - - -
- + 제목은 필수 입력입니다. + + + 내용 + + 내용은 필수 입력입니다. +
diff --git a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts index a24b8fc..ca397eb 100644 --- a/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts +++ b/src/app/modules/beteran/compose/compose/customer-registration-compose.component.ts @@ -25,7 +25,7 @@ import { MatDialogRef } from '@angular/material/dialog'; ], }) export class CustomerRegistrationComposeComponent implements OnInit { - composeForm!: FormGroup; + customerRegistrationComposeForm!: FormGroup; dataSource = ELEMENT_DATA; columnsToDisplay = ['idx', 'content', 'applicationDate']; @@ -48,9 +48,9 @@ export class CustomerRegistrationComposeComponent implements OnInit { */ ngOnInit(): void { // Create the form - this.composeForm = this._formBuilder.group({ - accountHolder: ['', [Validators.required]], - amount: ['', [Validators.required]], + this.customerRegistrationComposeForm = this._formBuilder.group({ + title: ['', [Validators.required]], + content: ['', [Validators.required]], }); } diff --git a/src/app/modules/beteran/compose/compose/notice-compose.component.html b/src/app/modules/beteran/compose/compose/notice-compose.component.html index 5f7570b..b4c4316 100644 --- a/src/app/modules/beteran/compose/compose/notice-compose.component.html +++ b/src/app/modules/beteran/compose/compose/notice-compose.component.html @@ -48,7 +48,7 @@ class="example-element-row" [class.example-expanded-row]="expandedElement === element" (click)="expandedElement = expandedElement === element ? null : element" - style="cursor: default" + style="cursor: default; font-weight: bold" >