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.
25 lines (24 loc) • 728 B
JavaScript
import formatHelper from './../format';
module.exports = {
important: [],
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
}
]
};