Commit 706e99a769b070931c21d59e78030c60a37afc48
tidyup
mix irving committed on 1/1/2017, 2:05:43 AMParent: d9d89ed326a9b97344e1acbc7381a71a23657b73
Files changed
modules_basic/message.mcss | changed |
modules_extra/git.js | changed |
modules_basic/message.mcss | ||
---|---|---|
@@ -33,9 +33,8 @@ | ||
33 | 33 … | } |
34 | 34 … | |
35 | 35 … | section.content { |
36 | 36 … | flex-basis: 100% |
37 | - clear: both | |
38 | 37 … | |
39 | 38 … | (img) { |
40 | 39 … | max-width: 100% |
41 | 40 … | } |
modules_extra/git.js | ||
---|---|---|
@@ -474,26 +474,25 @@ | ||
474 | 474 … | if(c.type === 'git-update') { |
475 | 475 … | return h('p', 'pushed to ', repoLink(c.repo)) |
476 | 476 … | } |
477 | 477 … | |
478 | - if(c.type === 'issue-edit' | |
479 | - || (c.type === 'post' && c.text === '')) { | |
480 | - return h('div', | |
478 … | + if(c.type === 'issue-edit' || (c.type === 'post' && c.text === '')) { | |
479 … | + return h('div', [ | |
481 | 480 … | c.issue ? renderIssueEdit(c) : null, |
482 | - c.issues ? c.issues.map(renderIssueEdit) : null) | |
481 … | + c.issues ? c.issues.map(renderIssueEdit) : null | |
482 … | + ]) | |
483 | 483 … | } |
484 | 484 … | |
485 | 485 … | if(c.type === 'issue') { |
486 | 486 … | return h('p', 'opened issue on ', repoLink(c.project)) |
487 | 487 … | } |
488 | 488 … | |
489 | 489 … | if(c.type === 'pull-request') { |
490 | - return h('p', 'opened pull-request ', | |
491 | - 'to ', repoLink(c.repo), ':', c.branch, ' ', | |
492 | - 'from ', repoLink(c.head_repo), ':', c.head_branch | |
493 | - ) | |
490 … | + return h('p', 'opened pull-request ', [ | |
491 … | + 'to ', repoLink(c.repo), ':', c.branch, ' ', | |
492 … | + 'from ', repoLink(c.head_repo), ':', c.head_branch | |
493 … | + ]) | |
494 | 494 … | } |
495 | - | |
496 | 495 … | }, |
497 | 496 … | |
498 | 497 … | message_meta: function (msg, sbot) { |
499 | 498 … | var type = msg.value.content.type |
@@ -543,5 +542,4 @@ | ||
543 | 542 … | } |
544 | 543 … | } |
545 | 544 … | } |
546 | 545 … | |
547 | - |
Built with git-ssb-web