From 70915df5adad3b477435c8ea078e05abfb9027e4 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 16 Jul 2023 21:06:43 -0500 Subject: [PATCH] fix: add newlines after device info entries for debug info (#3008) --- .../presentation/widgets/float_bubble/question_bubble.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart index 0c9ca99e9f..16dd0f14bc 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart @@ -117,7 +117,7 @@ class _DebugToast { final deviceInfo = await deviceInfoPlugin.deviceInfo; return deviceInfo.data.entries - .fold('', (prev, el) => "$prev${el.key}: ${el.value}"); + .fold('', (prev, el) => "$prev${el.key}: ${el.value}\n"); } Future _getDocumentPath() async {