mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-07 22:15:45 +01:00
extension point for changeset description should be only rendered once
This commit is contained in:
@@ -69,7 +69,7 @@ class ChangesetRow extends React.Component<Props> {
|
|||||||
<ExtensionPoint
|
<ExtensionPoint
|
||||||
name="changesets.changeset.description"
|
name="changesets.changeset.description"
|
||||||
props={{ changeset, value: description.title }}
|
props={{ changeset, value: description.title }}
|
||||||
renderAll={true}
|
renderAll={false}
|
||||||
>
|
>
|
||||||
{description.title}
|
{description.title}
|
||||||
</ExtensionPoint>
|
</ExtensionPoint>
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class ChangesetDetails extends React.Component<Props> {
|
|||||||
<ExtensionPoint
|
<ExtensionPoint
|
||||||
name="changesets.changeset.description"
|
name="changesets.changeset.description"
|
||||||
props={{ changeset, value: description.title }}
|
props={{ changeset, value: description.title }}
|
||||||
renderAll={true}
|
renderAll={false}
|
||||||
>
|
>
|
||||||
{description.title}
|
{description.title}
|
||||||
</ExtensionPoint>
|
</ExtensionPoint>
|
||||||
@@ -83,7 +83,7 @@ class ChangesetDetails extends React.Component<Props> {
|
|||||||
<ExtensionPoint
|
<ExtensionPoint
|
||||||
name="changesets.changeset.description"
|
name="changesets.changeset.description"
|
||||||
props={{ changeset, value: item }}
|
props={{ changeset, value: item }}
|
||||||
renderAll={true}
|
renderAll={false}
|
||||||
>
|
>
|
||||||
{item}
|
{item}
|
||||||
</ExtensionPoint>
|
</ExtensionPoint>
|
||||||
|
|||||||
Reference in New Issue
Block a user