Skip to content

Commit b2b34dd

Browse files
committed
Fix types
1 parent 7ee7fec commit b2b34dd

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

x-pack/plugins/ingest_manager/common/services/agent_status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function buildKueryForUnenrollingAgents() {
4646
}
4747

4848
export function buildKueryForOnlineAgents() {
49-
return `not (${buildKueryForOfflineAgents()}) AND not (${buildKueryForErrorAgents()}) AND not (${buildKueryForEnrolingAgents()}) AND not (${buildKueryForUnenrolingAgents()})`;
49+
return `not (${buildKueryForOfflineAgents()}) AND not (${buildKueryForErrorAgents()}) AND not (${buildKueryForEnrollingAgents()}) AND not (${buildKueryForUnenrollingAgents()})`;
5050
}
5151

5252
export function buildKueryForErrorAgents() {

x-pack/plugins/security_solution/public/management/pages/policy/store/policy_details/reducer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const initialPolicyDetailsState: () => Immutable<PolicyDetailsState> = ()
2121
offline: 0,
2222
online: 0,
2323
total: 0,
24+
other: 0,
2425
},
2526
});
2627

x-pack/plugins/security_solution/public/management/pages/policy/store/policy_list/reducer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const initialPolicyListState: () => Immutable<PolicyListState> = () => ({
3131
offline: 0,
3232
online: 0,
3333
total: 0,
34+
other: 0,
3435
},
3536
});
3637

0 commit comments

Comments
 (0)