Revert: Added extension point for changeset description

This commit is contained in:
Philipp Czora
2018-12-27 13:56:35 +01:00
parent 1898a8ffe5
commit d0e13fcb09

View File

@@ -17,7 +17,6 @@ import {
import classNames from "classnames"; import classNames from "classnames";
import type { Tag } from "@scm-manager/ui-types"; import type { Tag } from "@scm-manager/ui-types";
import { ExtensionPoint } from "@scm-manager/ui-extensions";
const styles = { const styles = {
spacing: { spacing: {
@@ -67,11 +66,6 @@ class ChangesetDetails extends React.Component<Props> {
</div> </div>
<div className="media-right">{this.renderTags()}</div> <div className="media-right">{this.renderTags()}</div>
</article> </article>
<ExtensionPoint
name="changesets.changeset.description"
props={{ changeset, description }}
renderAll={true}
>
<p> <p>
{description.message.split("\n").map((item, key) => { {description.message.split("\n").map((item, key) => {
return ( return (
@@ -82,7 +76,6 @@ class ChangesetDetails extends React.Component<Props> {
); );
})} })}
</p> </p>
</ExtensionPoint>
</div> </div>
<div> <div>
<ChangesetDiff changeset={changeset} /> <ChangesetDiff changeset={changeset} />