mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
|
|
const platformOptions = [
|
||
|
|
{ label: 'All Platforms', value: '' },
|
||
|
|
{ label: 'macOS', value: 'darwin' },
|
||
|
|
{ label: 'Windows', value: 'windows' },
|
||
|
|
{ label: 'Ubuntu', value: 'ubuntu' },
|
||
|
|
{ label: 'Centos', value: 'centos' },
|
||
|
|
];
|
||
|
|
|
||
|
|
export default { platformOptions };
|