diff --git a/frontend/src/components/HostMetricsDetail/HostMetricTraces/HostMetricTraces.tsx b/frontend/src/components/HostMetricsDetail/HostMetricTraces/HostMetricTraces.tsx index 2d4b7af903df..633b85dfeb6e 100644 --- a/frontend/src/components/HostMetricsDetail/HostMetricTraces/HostMetricTraces.tsx +++ b/frontend/src/components/HostMetricsDetail/HostMetricTraces/HostMetricTraces.tsx @@ -67,6 +67,10 @@ function HostMetricTraces({ aggregateAttribute: { ...currentQuery.builder.queryData[0].aggregateAttribute, }, + filters: { + items: [], + op: 'AND', + }, }, ], }, diff --git a/frontend/src/components/HostMetricsDetail/HostMetricsLogs/HostMetricLogsDetailedView.tsx b/frontend/src/components/HostMetricsDetail/HostMetricsLogs/HostMetricLogsDetailedView.tsx index 4a8c65ce39cc..ec88ef49e6dc 100644 --- a/frontend/src/components/HostMetricsDetail/HostMetricsLogs/HostMetricLogsDetailedView.tsx +++ b/frontend/src/components/HostMetricsDetail/HostMetricsLogs/HostMetricLogsDetailedView.tsx @@ -50,6 +50,10 @@ function HostMetricLogsDetailedView({ aggregateAttribute: { ...currentQuery.builder.queryData[0].aggregateAttribute, }, + filters: { + items: [], + op: 'AND', + }, }, ], }, diff --git a/frontend/src/container/InfraMonitoringHosts/InfraMonitoring.styles.scss b/frontend/src/container/InfraMonitoringHosts/InfraMonitoring.styles.scss index 1247638b7bc9..f3bc796809f5 100644 --- a/frontend/src/container/InfraMonitoringHosts/InfraMonitoring.styles.scss +++ b/frontend/src/container/InfraMonitoringHosts/InfraMonitoring.styles.scss @@ -55,11 +55,14 @@ .hosts-list-content { display: flex; flex-direction: row; + align-items: stretch; + height: calc(100vh - 110px); .hosts-quick-filters-container { width: 280px; min-width: 280px; border-right: 1px solid var(--bg-slate-400); + height: 100%; .hosts-quick-filters-container-header { padding: 8px; @@ -193,7 +196,7 @@ .ant-pagination { position: fixed; bottom: 0; - width: calc(100% - 64px); + width: calc(100% - 364px); background: var(--bg-ink-500); padding: 16px; margin: 0;