Skip to content

Commit

Permalink
refactor: change challenge number
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav committed Dec 11, 2023
1 parent 6a791b4 commit b2ec792
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you would like to propose a challenge, this project is open source, so feel f
## Challenges

Check [all 40 challenges](https://angular-challenges.vercel.app/)
Check [all 41 challenges](https://angular-challenges.vercel.app/)

## Contributors ✨

Expand Down
2 changes: 1 addition & 1 deletion apps/forms/control-value-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ npx nx serve forms-control-value-accessor

### Documentation and Instruction

Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/forms/40-control-value-accessor/).
Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/forms/41-control-value-accessor/).
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class="feedback-form-control"
[formControl]="feedbackForm.controls.email"
placeholder="Email"
type="text" />
type="email" />
<app-rating-control (ratingUpdated)="rating = $event"> </app-rating-control>
<textarea
class="feedback-form-control"
Expand Down
2 changes: 1 addition & 1 deletion challenge-number.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"total": 40,
"total": 41,
"🟢": 14,
"🟠": 119,
"🔴": 207
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: 🟠 Control Value Accessor
description: Challenge 40 is about creating a custom form control that implements Control Value Accessor interface.
description: Challenge 41 is about creating a custom form control that implements Control Value Accessor interface.
author: stanislav-gavrilov
challengeNumber: 40
challengeNumber: 41
command: forms-control-value-accessor
sidebar:
order: 119
Expand Down
6 changes: 3 additions & 3 deletions docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hero:
icon: right-arrow
variant: primary
- text: Go to the latest Challenge
link: /challenges/forms/40-control-value-accessor/
link: /challenges/forms/41-control-value-accessor/
icon: rocket
- text: Give a star
link: https://github.com/tomalaforge/angular-challenges
Expand All @@ -27,8 +27,8 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
import MyIcon from '../../components/MyIcon.astro';

<CardGrid>
<Card title="40 Challenges">
This repository gathers 40 Challenges related to <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> and <b>Typescript</b>.
<Card title="41 Challenges">
This repository gathers 41 Challenges related to <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> and <b>Typescript</b>.
These challenges resolve around real-life issues or specific features to elevate your skills.
</Card>

Expand Down

0 comments on commit b2ec792

Please sign in to comment.