File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -606,10 +606,19 @@ class Edit extends Component<typeof CampaignMembersChart> {
606
606
export class CampaignMembersChart extends CardDef {
607
607
static displayName = ' CampaignMembersChart' ;
608
608
609
- @field name = contains (StringField );
610
- @field chartType = contains (StringField );
611
- @field contactMembers = containsMany (ContactMembersField );
612
- @field leadMembers = containsMany (LeadMembersField );
609
+ @field name = contains (StringField , {
610
+ description: ' The campaign name' ,
611
+ });
612
+ @field chartType = contains (StringField , {
613
+ description:
614
+ ' Chart type that will be displayed for showing sent and responded members' ,
615
+ });
616
+ @field contactMembers = containsMany (ContactMembersField , {
617
+ description: ' Contact members of the campaign, each with response status' ,
618
+ });
619
+ @field leadMembers = containsMany (LeadMembersField , {
620
+ description: ' Lead members of the campaign, each with response status' ,
621
+ });
613
622
614
623
static isolated = Isolated ;
615
624
static embedded = Embedded ;
You can’t perform that action at this time.
0 commit comments