소스 검색

Merge pull request #3690 from shockey/bug/3636-tag-description-markdown

Display Tag descriptions as Markdown
bubble
kyle 7 년 전
committed by GitHub
부모
커밋
6a8f821901
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/core/components/operations.jsx

+ 2
- 1
src/core/components/operations.jsx 파일 보기

@@ -36,6 +36,7 @@ export default class Operations extends React.Component {

const Operation = getComponent("operation")
const Collapse = getComponent("Collapse")
const Markdown = getComponent("Markdown")

let showSummary = layoutSelectors.showSummary()
let {
@@ -89,7 +90,7 @@ export default class Operations extends React.Component {
</a>
{ !tagDescription ? null :
<small>
{ tagDescription }
<Markdown source={tagDescription} />
</small>
}



불러오는 중...
취소
저장