Skip to content
Merged

Dev #91

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/frontend/src/screens/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,13 @@ function Dashboard() {
type="text"
autoFocus
placeholder="Enter quiz title..."
className="input-field mb-6 py-3 px-5 font-bold tracking-wider font-secondary outline-none border border-pink-800 w-96 rounded-xl text-gray-300"
className="input-field mb-6 py-3 px-5 font-bold tracking-wider font-secondary outline-none border border-pink-800 sm:w-96 min-w-60 m-auto rounded-xl text-gray-300"
value={newTitle}
onChange={e => setNewTitle(e.target.value)}
/>
<textarea
placeholder="Description (optional)"
className="input-field mb-6 resize-none h-24 text-gray-300 font-bold font-secondary tracking-wider border border-pink-900 outline-none py-2 px-4 rounded-xl"
className="input-field mb-6 resize-none h-24 text-gray-300 font-bold font-secondary tracking-wider border border-pink-900 outline-none sm:w-96 min-w-60 m-auto py-2 px-4 rounded-xl"
value={newDescription}
onChange={e => setNewDescription(e.target.value)}
/>
Expand Down
4 changes: 2 additions & 2 deletions issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
* Therefore, you have to implement the functionalty of updating the created questions


## (4) Fourth Issue (Ws closed connection logic)
## (4) Fourth Issue (Ws closed connection logic)

-> Backend route `/apps/ws-server/src/index.ts`
-> Backend route `/apps/ws-server/src/index.ts`

#### -> Check the page in ws-server , index.ts where you have to:-
* Implement the logic for closing connection
Expand Down
Loading