@@ -15,7 +15,7 @@ const BORS_LOGIN = 'bors[bot]';
15
15
16
16
function makeTagAbsoluteUrl ( owner , repo , tag ) {
17
17
return `https://github.com/${ owner } /${ repo } /releases/tag/${ encodeURIComponent (
18
- tag
18
+ tag ,
19
19
) } `;
20
20
}
21
21
@@ -206,7 +206,7 @@ export default withRouter(DeployPage);
206
206
class DeployTable extends React . Component {
207
207
static propTypes = {
208
208
deployInfo : PropTypes . arrayOf (
209
- PropTypes . shape ( { name : PropTypes . string . isRequired } )
209
+ PropTypes . shape ( { name : PropTypes . string . isRequired } ) ,
210
210
) . isRequired ,
211
211
commits : PropTypes . arrayOf ( PropTypes . shape ( { } ) ) . isRequired ,
212
212
tags : PropTypes . object . isRequired ,
@@ -230,7 +230,7 @@ class DeployTable extends React.Component {
230
230
231
231
_restoreBorsModeChoice = ( ) => {
232
232
const prefs = JSON . parse (
233
- localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}'
233
+ localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}' ,
234
234
) ;
235
235
if (
236
236
this . props . code in prefs &&
@@ -242,7 +242,7 @@ class DeployTable extends React.Component {
242
242
243
243
_persistBorsModeChoice = ( ) => {
244
244
const prefs = JSON . parse (
245
- localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}'
245
+ localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}' ,
246
246
) ;
247
247
prefs [ this . props . code ] = this . state . borsMode ;
248
248
localStorage . setItem ( this . prefBorsModeCacheKey , JSON . stringify ( prefs ) ) ;
@@ -307,7 +307,7 @@ class DeployTable extends React.Component {
307
307
key = { `${ commit . sha } :${ deploy . name } ` }
308
308
/>
309
309
) ) }
310
- </ tr >
310
+ </ tr > ,
311
311
) ;
312
312
313
313
if ( foundMatch ) {
@@ -502,7 +502,7 @@ function UserAvatars({ users }) {
502
502
class RepoSummary extends React . Component {
503
503
static propTypes = {
504
504
deployInfo : PropTypes . arrayOf (
505
- PropTypes . shape ( { name : PropTypes . string . isRequired } )
505
+ PropTypes . shape ( { name : PropTypes . string . isRequired } ) ,
506
506
) . isRequired ,
507
507
owner : PropTypes . string . isRequired ,
508
508
repo : PropTypes . string . isRequired ,
0 commit comments