mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-29 01:12:04 +08:00
chore: reset filters while going from hosts list to host details (#7150)
This commit is contained in:
parent
3d85fd831a
commit
1925b6b4cb
@ -67,6 +67,10 @@ function HostMetricTraces({
|
|||||||
aggregateAttribute: {
|
aggregateAttribute: {
|
||||||
...currentQuery.builder.queryData[0].aggregateAttribute,
|
...currentQuery.builder.queryData[0].aggregateAttribute,
|
||||||
},
|
},
|
||||||
|
filters: {
|
||||||
|
items: [],
|
||||||
|
op: 'AND',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -50,6 +50,10 @@ function HostMetricLogsDetailedView({
|
|||||||
aggregateAttribute: {
|
aggregateAttribute: {
|
||||||
...currentQuery.builder.queryData[0].aggregateAttribute,
|
...currentQuery.builder.queryData[0].aggregateAttribute,
|
||||||
},
|
},
|
||||||
|
filters: {
|
||||||
|
items: [],
|
||||||
|
op: 'AND',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -55,11 +55,14 @@
|
|||||||
.hosts-list-content {
|
.hosts-list-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
align-items: stretch;
|
||||||
|
height: calc(100vh - 110px);
|
||||||
|
|
||||||
.hosts-quick-filters-container {
|
.hosts-quick-filters-container {
|
||||||
width: 280px;
|
width: 280px;
|
||||||
min-width: 280px;
|
min-width: 280px;
|
||||||
border-right: 1px solid var(--bg-slate-400);
|
border-right: 1px solid var(--bg-slate-400);
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
.hosts-quick-filters-container-header {
|
.hosts-quick-filters-container-header {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
@ -193,7 +196,7 @@
|
|||||||
.ant-pagination {
|
.ant-pagination {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: calc(100% - 64px);
|
width: calc(100% - 364px);
|
||||||
background: var(--bg-ink-500);
|
background: var(--bg-ink-500);
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user