Pull Request branch dev-clone to main #1

Merged
gitea merged 429 commits from dev-clone into main 2024-12-23 09:31:34 +00:00
Showing only changes of commit 2248cc9a60 - Show all commits

View File

@ -286,6 +286,7 @@ export default function QuestionFormModal() {
placeholder="Jawaban" placeholder="Jawaban"
readOnly={formType === "detail"} readOnly={formType === "detail"}
{...form.getInputProps(`options.${index}.text`)} {...form.getInputProps(`options.${index}.text`)}
disabled={mutation.isPending}
required required
/> />
<NumberInput <NumberInput
@ -297,6 +298,7 @@ export default function QuestionFormModal() {
allowDecimal={false} allowDecimal={false}
allowNegative={false} allowNegative={false}
{...form.getInputProps(`options.${index}.score`)} {...form.getInputProps(`options.${index}.score`)}
disabled={mutation.isPending}
required required
/> />
{formType !== "detail" && ( {formType !== "detail" && (