feat(room): enforce minimum room name length of 2 characters in creation and editing
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m17s

This commit is contained in:
2026-03-03 10:02:28 +01:00
parent 1c9c5224ae
commit 4bb22be496
4 changed files with 9 additions and 1 deletions

View File

@@ -502,6 +502,7 @@ export default function RoomDetail() {
onChange={e => setEditRoom({ ...editRoom, name: e.target.value })}
className="input-field"
required
minLength={2}
/>
</div>