mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-09 07:12:11 -05:00
fix(github): proper spacing in branch creation/deletion events (#149)
This commit is contained in:
@@ -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),
|
||||
],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user