File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 142
142
"generators/go" : {
143
143
"title" : " generators/go"
144
144
},
145
+ "generators/graphql-nodejs-express-server" : {
146
+ "title" : " generators/graphql-nodejs-express-server"
147
+ },
145
148
"generators/graphql-schema" : {
146
149
"title" : " generators/graphql-schema"
147
150
},
271
274
"generators/powershell" : {
272
275
"title" : " generators/powershell"
273
276
},
277
+ "generators/python-aiohttp" : {
278
+ "title" : " generators/python-aiohttp"
279
+ },
274
280
"generators/python-flask" : {
275
281
"title" : " generators/python-flask"
276
282
},
355
361
"generators/typescript-node" : {
356
362
"title" : " generators/typescript-node"
357
363
},
364
+ "generators/typescript-rxjs" : {
365
+ "title" : " generators/typescript-rxjs"
366
+ },
358
367
"installation" : {
359
368
"title" : " CLI Installation"
360
369
},
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ class Users extends React.Component {
24
24
25
25
const editUrl = `${ repoUrl } /edit/master/website/dynamic/users.yml` ;
26
26
const showcase = siteConfig . users . map ( user => {
27
- let imgUrl = `${ baseUrl } ${ user . image . startsWith ( "/" ) ? user . image : "/" + user . image } ` ;
27
+ // avoid joining base/ with /img/path as double-slash breaks image load.
28
+ let trimmedImg = user . image . startsWith ( "/" ) ? user . image . slice ( 1 , user . image . length ) : user . image ;
29
+ let imgUrl = `${ baseUrl } ${ trimmedImg } ` ;
28
30
return (
29
31
< a href = { user . infoLink } key = { user . infoLink } >
30
32
< img src = { imgUrl } alt = { user . caption } title = { user . caption } />
You can’t perform that action at this time.
0 commit comments