#148 fix: alpine process

This commit is contained in:
lollipopkit
2023-08-28 17:11:58 +08:00
parent e1284feae6
commit e20f2d32e8
5 changed files with 100 additions and 58 deletions

View File

@@ -254,7 +254,10 @@ class _HomePageState extends State<HomePage>
/// Encode [map] to String with indent `\t`
final text = const JsonEncoder.withIndent('\t').convert(map);
final result = await AppRoute.editor(text: text, langCode: 'json',).go(context);
final result = await AppRoute.editor(
text: text,
langCode: 'json',
).go(context);
if (result == null) {
return;
}