Skip to content

Commit

Permalink
fix: issue page image size
Browse files Browse the repository at this point in the history
  • Loading branch information
gopi2401 committed Oct 7, 2024
1 parent be2399c commit b7dd21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/issues.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class IssueFormState extends State<IssueForm> {
}

final issueBody = body +
(imageUrl.isNotEmpty ? '\n\n![Screenshot]($imageUrl)' : '') +
(imageUrl.isNotEmpty ? '\n\n<img src="$imageUrl" width=250/>' : '') +
(_nameController.text.isNotEmpty
? '\n\n$option raised by ${_nameController.text.trim()}.'
: '');
Expand Down

0 comments on commit b7dd21f

Please sign in to comment.