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.
35 lines (34 loc) • 1.05 kB
JavaScript
import formatHelper from './../format';
module.exports = {
important: [
{
display: 'Current Velocity',
key: 'veolcity',
value: 'property-pivotaltracker.project.currentVelocity'
},
{
display: 'Iteration Length',
key: 'iterationlength',
value: 'property-pivotaltracker.project.iterationLength'
}],
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
}
]
};