fleet/frontend/components/forms/LabelForm/helpers.js
Mike Stone ff74ba2233 Edit labels (#1207)
* Moves LabelForm outside of the QueryForm component

* Render LabelForm in ManageHostsPage

* API client to update labels

* Edit button styles
2017-02-15 09:51:19 -05:00

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 };