mirror of
https://github.com/Readarr/Readarr
synced 2025-12-29 19:54:20 +01:00
Allow inline markdown in the changelog for linking to wiki
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
051af8a9a6
commit
e18f4bb71c
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import React, { Component } from 'react';
|
||||
import InlineMarkdown from 'Components/Markdown/InlineMarkdown';
|
||||
import styles from './UpdateChanges.css';
|
||||
|
||||
class UpdateChanges extends Component {
|
||||
|
|
@ -25,7 +26,7 @@ class UpdateChanges extends Component {
|
|||
changes.map((change, index) => {
|
||||
return (
|
||||
<li key={index}>
|
||||
{change}
|
||||
<InlineMarkdown data={change} />
|
||||
</li>
|
||||
);
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue