feat: add back button to test edit form

TestForm now accepts optional onBack/backLabel props.
TestEdit passes 'К просмотру теста' back button when in edit mode.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Aleksey Razorvin
2026-03-21 13:42:07 +05:00
parent 60b9121a05
commit 8df6077798
2 changed files with 17 additions and 1 deletions
+2
View File
@@ -92,6 +92,8 @@ export default function TestEdit() {
isPending={isPending}
submitLabel="Сохранить"
onCancel={() => setEditMode(false)}
onBack={() => setEditMode(false)}
backLabel="К просмотру теста"
/>
)
}