mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
ff74ba2233
* Moves LabelForm outside of the QueryForm component * Render LabelForm in ManageHostsPage * API client to update labels * Edit button styles
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 };
|