fix: order

This commit is contained in:
thomas
2023-12-18 12:11:07 +01:00
parent e194925127
commit 6e30725aa0
3 changed files with 4 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ author: stanislav-gavrilov
challengeNumber: 41
command: forms-control-value-accessor
sidebar:
order: 119
order: 1
badge: New
---
@@ -21,7 +21,7 @@ Additionally, you are required to integrate validation for the new control to en
Currently, rating is coded this way:
```html
<app-rating-control (ratingUpdated)="rating = $event"> </app-rating-control>
<app-rating-control (ratingUpdated)="rating = $event"></app-rating-control>
```
```ts
@@ -38,5 +38,5 @@ onFormSubmit(): void {
The goal is to include rating into the `FormGroup`
```html
<app-rating-control [formControl]="feedbackForm.controls.rating"> </app-rating-control>
<app-rating-control [formControl]="feedbackForm.controls.rating"></app-rating-control>
```

View File

@@ -6,7 +6,6 @@ challengeNumber: 40
command: performance-christmas-web-worker
sidebar:
order: 119
badge: New
---
## Information