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.02 kB
JavaScript
import formatHelper from './../format';
module.exports = {
important: [
{
display: 'Retweets',
key: 'retweets',
value: 'property-twitter.status.retweetcount'
},
{
display: 'Favourites',
key: 'favourites',
value: 'property-twitter.status.favouritecount'
}],
all: [
{
display: 'Url',
value: 'property-twitter.status.detail.url'
}, {
display: 'Tweet Language',
value: 'property-twitter.status.language'
}, {
display: 'Is Sensitive?',
value: 'property-twitter.status.possiblysensitive',
format: formatHelper.YesOrNo
}, {
display: 'Created',
value: 'property-sharepoint.listItem.custom-Created'
}, {
display: 'Has Attachment?',
value: 'property-sharepoint.listItem.custom-Attachments',
format: formatHelper.YesOrNo
}
]
};