Make question text clickable to open edit sheet

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-03 13:41:01 -04:00
parent 114d44f6c0
commit 07408e0e33

View File

@@ -641,7 +641,10 @@ export default function QuestionBankView() {
</div> </div>
{/* Question text */} {/* Question text */}
<div className="min-w-0 flex-[2] truncate text-sm"> <div
className="min-w-0 flex-[2] cursor-pointer truncate text-sm hover:text-primary"
onClick={() => handleEdit(q)}
>
{q.question_content} {q.question_content}
</div> </div>