Skip to content

Commit

Permalink
Hotfix identity creator view bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tddang-linagora committed Dec 4, 2024
1 parent 47b842d commit ba8f41d
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,10 +472,16 @@ class IdentityCreatorView extends GetWidget<IdentityCreatorController>
),
]
),
_buildHtmlEditorWeb(
context,
controller.contentHtmlEditor,
maxWidth),
ConstrainedBox(
constraints: BoxConstraints(
maxWidth: maxWidth,
maxHeight: 500,
),
child: _buildHtmlEditorWeb(
context,
controller.contentHtmlEditor,
maxWidth),
),
],
);
} else {
Expand Down

0 comments on commit ba8f41d

Please sign in to comment.