@@ -15,7 +15,7 @@ const BORS_LOGIN = 'bors[bot]';
1515
1616function makeTagAbsoluteUrl ( owner , repo , tag ) {
1717 return `https://github.com/${ owner } /${ repo } /releases/tag/${ encodeURIComponent (
18- tag
18+ tag ,
1919 ) } `;
2020}
2121
@@ -206,7 +206,7 @@ export default withRouter(DeployPage);
206206class DeployTable extends React . Component {
207207 static propTypes = {
208208 deployInfo : PropTypes . arrayOf (
209- PropTypes . shape ( { name : PropTypes . string . isRequired } )
209+ PropTypes . shape ( { name : PropTypes . string . isRequired } ) ,
210210 ) . isRequired ,
211211 commits : PropTypes . arrayOf ( PropTypes . shape ( { } ) ) . isRequired ,
212212 tags : PropTypes . object . isRequired ,
@@ -230,7 +230,7 @@ class DeployTable extends React.Component {
230230
231231 _restoreBorsModeChoice = ( ) => {
232232 const prefs = JSON . parse (
233- localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}'
233+ localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}' ,
234234 ) ;
235235 if (
236236 this . props . code in prefs &&
@@ -242,7 +242,7 @@ class DeployTable extends React.Component {
242242
243243 _persistBorsModeChoice = ( ) => {
244244 const prefs = JSON . parse (
245- localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}'
245+ localStorage . getItem ( this . prefBorsModeCacheKey ) || '{}' ,
246246 ) ;
247247 prefs [ this . props . code ] = this . state . borsMode ;
248248 localStorage . setItem ( this . prefBorsModeCacheKey , JSON . stringify ( prefs ) ) ;
@@ -307,7 +307,7 @@ class DeployTable extends React.Component {
307307 key = { `${ commit . sha } :${ deploy . name } ` }
308308 />
309309 ) ) }
310- </ tr >
310+ </ tr > ,
311311 ) ;
312312
313313 if ( foundMatch ) {
@@ -502,7 +502,7 @@ function UserAvatars({ users }) {
502502class RepoSummary extends React . Component {
503503 static propTypes = {
504504 deployInfo : PropTypes . arrayOf (
505- PropTypes . shape ( { name : PropTypes . string . isRequired } )
505+ PropTypes . shape ( { name : PropTypes . string . isRequired } ) ,
506506 ) . isRequired ,
507507 owner : PropTypes . string . isRequired ,
508508 repo : PropTypes . string . isRequired ,
0 commit comments