From efe882a0dfdc4b824fd3265464f5e92e9557ba96 Mon Sep 17 00:00:00 2001 From: Surendrajat Date: Fri, 8 Jan 2021 14:29:30 +0530 Subject: [PATCH] fix(github): proper spacing in branch creation/deletion events (#149) --- lib/widgets/event_item.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/event_item.dart b/lib/widgets/event_item.dart index 77da563..dd86121 100644 --- a/lib/widgets/event_item.dart +++ b/lib/widgets/event_item.dart @@ -352,7 +352,7 @@ class EventItem extends StatelessWidget { TextSpan(text: ' created a ${e.payload.refType}'), TextSpan( text: - '${e.payload.ref == null ? '' : ' ' + e.payload.ref + 'at'} '), + '${e.payload.ref == null ? '' : ' ' + e.payload.ref + ' at'} '), _buildRepo(context), ], ); @@ -363,7 +363,7 @@ class EventItem extends StatelessWidget { TextSpan(text: ' deleted the ${e.payload.refType}'), TextSpan( text: - '${e.payload.ref == null ? '' : ' ' + e.payload.ref + 'at'} '), + '${e.payload.ref == null ? '' : ' ' + e.payload.ref + ' at'} '), _buildRepo(context), ], );