@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 354 B
JavaScript
export const getShortcutSettingsViewItems = (shortcut) => {
const values = [
`Shortcut Key: ${shortcut.ShortcutKey || 'Not selected'}`,
`Value: ${shortcut.ShortcutValue ?? 'Not specified'}`,
`Operation: ${shortcut.ShortcutOperation ?? 'Not Specified'}`,
];
return {
name: 'Settings',
values,
};
};