Skip to content

Commit

Permalink
fix(github): proper spacing in branch creation/deletion events (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
Surendrajat committed Jan 8, 2021
1 parent 92bcdaa commit efe882a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/widgets/event_item.dart
Expand Up @@ -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),
],
);
Expand All @@ -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),
],
);
Expand Down

0 comments on commit efe882a

Please sign in to comment.