cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
40 lines (39 loc) • 1.14 kB
JavaScript
import formatHelper from './../format';
module.exports = {
important: [
{
display: 'Status',
key: 'status',
value: 'property-salesforce.lead.CleanStatus'
},
{
display: 'Lead Source',
key: 'leadsource',
value: 'property-salesforce.lead.LeadSource'
},
{
display: 'Rating',
key: 'rating',
value: 'property-salesforce.lead.Rating'
}],
all: [
{
display: 'Project Name',
value: 'property-pivotaltracker.project.name'
},
'property-pivotaltracker.project.currentVelocity',
{
display: 'Is Archived?',
value: 'property-asana.project.isArchived',
format: formatHelper.YesOrNo
},
'property-pivotaltracker.project.iterationLength',
'property-pivotaltracker.project.velocityScheme',
'property-pivotaltracker.project.weekStartDay',
{
display: 'Color',
value: 'property-asana.project.color',
isColor: true
}
]
};