Skip to content

Commit

Permalink
More rows in the questtext field when editing a question
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusgreen committed Jun 22, 2024
1 parent 7d929b7 commit 02af46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edit_aitext_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function definition_inner($mform) {
$mform->removeelement('generalfeedback');
$mform->removeelement('questiontext');
$mform->addElement('editor', 'questiontext', get_string('questiontext', 'mod_quiz'),
['maxlen' => 50, 'rows' => 5, 'size' => 30], $this->editoroptions);
['maxlen' => 50, 'rows' => 8, 'size' => 30], $this->editoroptions);

$mform->addElement('textarea', 'aiprompt', get_string('aiprompt', 'qtype_aitext'),
['maxlen' => 50, 'rows' => 5, 'size' => 30]);
Expand Down

0 comments on commit 02af46f

Please sign in to comment.