File tree 6 files changed +28
-17
lines changed 6 files changed +28
-17
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,10 @@ export default class GoogleLoginWrapper extends React.Component {
70
70
className = { 'button start-retro ' + this . props . className }
71
71
hostedDomain = { global . Retro . config . google_oauth_hosted_domain }
72
72
>
73
- < span > < i className = "fa fa-google" aria-hidden = "true" style = { { marginRight : '10px' } } /> Sign in with Google</ span >
73
+ < span >
74
+ < i className = "fa fa-google" aria-hidden = "true" style = { { marginRight : '10px' } } />
75
+ Sign in with Google
76
+ </ span >
74
77
</ GoogleLogin >
75
78
</ div >
76
79
) ;
Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ export default class NotFoundPage extends React.Component {
60
60
type = "button"
61
61
style = { { fontSize : '1.1rem' } }
62
62
onClick = { this . onCreateNewRetroClicked }
63
- > Create a Project
63
+ >
64
+ Create a Project
64
65
</ button >
65
66
</ div >
66
67
</ div >
Original file line number Diff line number Diff line change @@ -189,12 +189,12 @@ export default class RetroCreatePage extends React.Component {
189
189
return (
190
190
< div className = "access-instruction" >
191
191
{ this . state . isPrivate ? accessPrivate : accessPublic }
192
-
193
192
< br />
194
- Password is always required to: < br />
195
- < img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Access archives< br />
193
+ Password is always required to:
194
+ < br />
195
+ < img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Access archives
196
+ < br />
196
197
< img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Edit settings
197
-
198
198
</ div >
199
199
) ;
200
200
}
@@ -228,7 +228,9 @@ export default class RetroCreatePage extends React.Component {
228
228
< div className = "row" >
229
229
< label className = "label" > Choose a team URL</ label >
230
230
< div className = "input-group retro-url" >
231
- < span className = "input-group-label retro-url-prefix" > { this . getCurrentHost ( ) } /retros/</ span >
231
+ < span className = "input-group-label retro-url-prefix" >
232
+ { `${ this . getCurrentHost ( ) } /retros/` }
233
+ </ span >
232
234
< input
233
235
id = "retro_url"
234
236
value = { slug }
@@ -255,8 +257,9 @@ export default class RetroCreatePage extends React.Component {
255
257
< div className = "error-message" > { errors . password } </ div >
256
258
</ div >
257
259
< div className = "row" >
258
- < label className = "label" htmlFor = "retro_is_private" > Do people need the password to < strong > access</ strong > this retro?</ label >
259
-
260
+ < label className = "label" htmlFor = "retro_is_private" >
261
+ Do people need the password to < strong > access</ strong > this retro?
262
+ </ label >
260
263
< Toggle
261
264
id = "retro_is_private"
262
265
name = "isPrivate"
Original file line number Diff line number Diff line change @@ -119,7 +119,9 @@ export default class LoginToRetroPage extends React.Component {
119
119
< div className = "small-centered medium-8 small-10 columns" >
120
120
< div className = "field row" >
121
121
< h1 > { this . pageTitle ( ) } </ h1 >
122
- < label className = "label" > Enter the password to access { name } .</ label >
122
+ < label className = "label" >
123
+ Enter the password to access { name } .
124
+ </ label >
123
125
< input
124
126
className = { `form-input ${ inputStyle } ` }
125
127
placeholder = "Password"
Original file line number Diff line number Diff line change @@ -251,12 +251,12 @@ export default class ShowRetroSettingsPage extends React.Component {
251
251
return (
252
252
< div className = "access-instruction" >
253
253
{ this . state . isPrivate ? accessPrivate : accessPublic }
254
-
255
254
< br />
256
- Password is always required to: < br />
257
- < img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Access archives< br />
255
+ Password is always required to:
256
+ < br />
257
+ < img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Access archives
258
+ < br />
258
259
< img className = "icon-locked" src = { iconLockedSvg } alt = "Locked" /> Edit settings
259
-
260
260
</ div >
261
261
) ;
262
262
}
@@ -322,7 +322,9 @@ export default class ShowRetroSettingsPage extends React.Component {
322
322
< div className = "row" >
323
323
< label className = "label" > Project URL</ label >
324
324
< div className = "input-group retro-url" >
325
- < span className = "input-group-label retro-url-prefix" > { this . getCurrentHost ( ) } /retros/</ span >
325
+ < span className = "input-group-label retro-url-prefix" >
326
+ { `${ this . getCurrentHost ( ) } /retros/` }
327
+ </ span >
326
328
< input
327
329
id = "retro_url"
328
330
value = { this . state . slug }
Original file line number Diff line number Diff line change 32
32
import React from 'react' ;
33
33
import RetroFooter from '../shared/footer' ;
34
34
35
- /* eslint-disable react/no-unescaped-entities */
35
+ /* eslint-disable react/no-unescaped-entities, react/jsx-one-expression-per-line */
36
36
37
37
export default ( ) => (
38
38
< div id = "new-terms" className = "terms" >
@@ -240,4 +240,4 @@ export default () => (
240
240
</ div >
241
241
) ;
242
242
243
- /* eslint-enable react/no-unescaped-entities */
243
+ /* eslint-enable react/no-unescaped-entities, react/jsx-one-expression-per-line */
You can’t perform that action at this time.
0 commit comments