diff --git a/lib/screens/editor.dart b/lib/screens/editor.dart index 4450a2a..8d6d9ab 100644 --- a/lib/screens/editor.dart +++ b/lib/screens/editor.dart @@ -310,8 +310,11 @@ class _EditorScreenState extends State { return Scaffold( appBar: StandardAppBar.build( - context, widget.id.isEmpty ? 'New $statusType' : 'Edit $statusType', - withDrawer: true), + context, + widget.id.isEmpty ? 'New $statusType' : 'Edit $statusType', + withDrawer: true, + withHome: !isSubmitting, + ), body: body, ); }