ソースを参照

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>
}



読み込み中…
キャンセル
保存