Skip to content
Snippets Groups Projects
Commit 5d1709bd authored by rhenck's avatar rhenck
Browse files

[editor] Fix cloze editor height

parent ea3e3fe5
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,12 @@ export class DialogService {
showClozeTextEditDialog(document: ClozeDocument, defaultFontSize: number): Observable<string> {
const dialogRef = this.dialog.open(RichTextEditDialogComponent, {
data: { content: document, defaultFontSize, clozeMode: true },
data: {
content: document,
defaultFontSize,
clozeMode: true
},
height: '700px',
autoFocus: false
});
return dialogRef.afterClosed();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment