mirror of
https://github.com/git-touch/git-touch
synced 2025-02-02 17:07:06 +01:00
fix(github): proper spacing in branch creation/deletion events (#149)
This commit is contained in:
parent
92bcdaa4b0
commit
efe882a0df
@ -352,7 +352,7 @@ class EventItem extends StatelessWidget {
|
|||||||
TextSpan(text: ' created a ${e.payload.refType}'),
|
TextSpan(text: ' created a ${e.payload.refType}'),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text:
|
text:
|
||||||
'${e.payload.ref == null ? '' : ' ' + e.payload.ref + 'at'} '),
|
'${e.payload.ref == null ? '' : ' ' + e.payload.ref + ' at'} '),
|
||||||
_buildRepo(context),
|
_buildRepo(context),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@ -363,7 +363,7 @@ class EventItem extends StatelessWidget {
|
|||||||
TextSpan(text: ' deleted the ${e.payload.refType}'),
|
TextSpan(text: ' deleted the ${e.payload.refType}'),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text:
|
text:
|
||||||
'${e.payload.ref == null ? '' : ' ' + e.payload.ref + 'at'} '),
|
'${e.payload.ref == null ? '' : ' ' + e.payload.ref + ' at'} '),
|
||||||
_buildRepo(context),
|
_buildRepo(context),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user