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.
21 lines (20 loc) • 519 B
JavaScript
import formatHelper from './../format';
module.exports = {
important: [],
all: [
{
display: 'Is shared?',
value: 'property-googleDrive.File.shared'
},
{
display: 'Is editable?',
value: 'property-googleDrive.File.editable',
format: formatHelper.YesOrNo
},
{
display: 'Is coypable?',
value: 'property-googleDrive.File.copyable',
format: formatHelper.YesOrNo
}
]
};