fix(github): proper spacing in branch creation/deletion events (#149)

This commit is contained in:
Surendrajat 2021-01-08 14:29:30 +05:30 committed by GitHub
parent 92bcdaa4b0
commit efe882a0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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),
],
);