diff --git a/src/client/src/TournamentTeams.js b/src/client/src/TournamentTeams.js
index e063834..3d24409 100644
--- a/src/client/src/TournamentTeams.js
+++ b/src/client/src/TournamentTeams.js
@@ -43,15 +43,18 @@ function TeamCreator(props) {
return (
+
)
}
@@ -92,7 +95,7 @@ function TeamList(props) {
{/* {team.members} */}
-
+
@@ -146,6 +149,10 @@ function TeamEditor(props) {
setTeam(newTeam);
}
+ function handleFocus(event) {
+ event.currentTarget.select()
+ }
+
function saveTeam() {
let formData = new FormData();
formData.append("name", team.name);
@@ -172,9 +179,9 @@ function TeamEditor(props) {