Skip to content

Commit 50e8aef

Browse files
committed
client: added a normal form validation with error and success messages
1 parent f9388f6 commit 50e8aef

File tree

12 files changed

+78
-50
lines changed

12 files changed

+78
-50
lines changed

client/build/asset-manifest.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.3e5236a5.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

client/build/static/css/main.d214021f.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.3e5236a5.css.map renamed to client/build/static/css/main.d214021f.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.469cfcd7.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.e165ebf8.js.map renamed to client/build/static/js/main.469cfcd7.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.e165ebf8.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

client/src/components/popups/BadgesPopup.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ const BadgesPopup: FC<LinePopupProps> = (props) => {
7878
<tbody>
7979
{props.badges.map((badge, index) => {
8080
return (
81-
<tr className="border-b border-solid border-gh-border">
81+
<tr
82+
className="border-b border-solid border-gh-border"
83+
key={index}
84+
>
8285
<td className="whitespace-nowrap text-gh-text-secondary text-sm px-4 py-2 text-left">
8386
{index + 1}
8487
</td>

0 commit comments

Comments
 (0)