Skip to content

Commit

Permalink
fix: order
Browse files Browse the repository at this point in the history
  • Loading branch information
tomalaforge committed Dec 18, 2023
1 parent e194925 commit 6e30725
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion challenge-number.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"total": 41,
"🟢": 14,
"🟠": 119,
"🟠": 120,
"🔴": 207
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: stanislav-gavrilov
challengeNumber: 41
command: forms-control-value-accessor
sidebar:
order: 119
order: 1
badge: New
---

Expand All @@ -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
Expand All @@ -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>
```
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ challengeNumber: 40
command: performance-christmas-web-worker
sidebar:
order: 119
badge: New
---

## Information
Expand Down

0 comments on commit 6e30725

Please sign in to comment.