We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cbeffa commit b461b0eCopy full SHA for b461b0e
src/components/common/ColonyActionsTable/partials/ActionDescription/ActionDescription.tsx
@@ -25,6 +25,7 @@ const ActionDescription: FC<ActionDescriptionProps> = ({
25
initiatorUser: user,
26
initiatorAddress,
27
metadata,
28
+ decisionData,
29
isMotion,
30
motionData,
31
motionState,
@@ -94,7 +95,10 @@ const ActionDescription: FC<ActionDescriptionProps> = ({
94
95
},
96
)}
97
>
- {metadata?.customTitle || actionMetadataDescription || '-'}
98
+ {metadata?.customTitle ||
99
+ decisionData?.title ||
100
+ actionMetadataDescription ||
101
+ '-'}
102
</p>
103
{colony && (
104
<p
0 commit comments