mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-22 15:26:30 +08:00
Merge remote-tracking branch 'upstream/beta' into beta
This commit is contained in:
@ -46,10 +46,10 @@ class _IssuesMessagePageState extends State<IssuesMessagePage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_submit() {
|
_submit() {
|
||||||
String mk = notusMarkdown.encode(_delta);
|
|
||||||
if (_title.trim().isEmpty) {
|
if (_title.trim().isEmpty) {
|
||||||
_show('标题不能为空');
|
_show('标题不能为空');
|
||||||
} else {
|
} else {
|
||||||
|
String mk = (_delta==null)?'No description provided.':notusMarkdown.encode(_delta);
|
||||||
DataUtils.feedback({'title': _title, "body": mk},context).then((result) {
|
DataUtils.feedback({'title': _title, "body": mk},context).then((result) {
|
||||||
_show('提交成功');
|
_show('提交成功');
|
||||||
Navigator.maybePop(context);
|
Navigator.maybePop(context);
|
||||||
|
Reference in New Issue
Block a user