Skip to content

Commit

Permalink
Update osquery versions available in schedule query UI (kolide#2323)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwass authored Oct 8, 2020
1 parent 59ba129 commit 7f35ced
Showing 1 changed file with 21 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,28 @@ const loggingTypeOptions = [
];
const minOsqueryVersionOptions = [
{ label: 'All', value: '' },
{ label: '1.8.1 +', value: '1.8.1' },
{ label: '1.8.2 +', value: '1.8.2' },
{ label: '2.0.0 +', value: '2.0.0' },
{ label: '2.1.1 +', value: '2.1.1' },
{ label: '2.1.2 +', value: '2.1.2' },
{ label: '2.2.0 +', value: '2.2.0' },
{ label: '2.2.1 +', value: '2.2.1' },
{ label: '3.2.6 +', value: '3.2.6' },
{ label: '4.5.1 +', value: '4.5.1' },
{ label: '4.5.0 +', value: '4.5.0' },
{ label: '4.4.0 +', value: '4.4.0' },
{ label: '4.3.0 +', value: '4.3.0' },
{ label: '4.2.0 +', value: '4.2.0' },
{ label: '4.1.2 +', value: '4.1.2' },
{ label: '4.1.1 +', value: '4.1.1' },
{ label: '4.1.0 +', value: '4.1.0' },
{ label: '4.0.2 +', value: '4.0.2' },
{ label: '4.0.1 +', value: '4.0.1' },
{ label: '4.0.0 +', value: '4.0.0' },
{ label: '3.4.0 +', value: '3.4.0' },
{ label: '3.3.2 +', value: '3.3.2' },
{ label: '3.3.1 +', value: '3.3.1' },
{ label: '3.2.6 +', value: '3.2.6' },
{ label: '2.2.1 +', value: '2.2.1' },
{ label: '2.2.0 +', value: '2.2.0' },
{ label: '2.1.2 +', value: '2.1.2' },
{ label: '2.1.1 +', value: '2.1.1' },
{ label: '2.0.0 +', value: '2.0.0' },
{ label: '1.8.2 +', value: '1.8.2' },
{ label: '1.8.1 +', value: '1.8.1' },
];

export class ConfigurePackQueryForm extends Component {
Expand Down

0 comments on commit 7f35ced

Please sign in to comment.