mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 00:37:33 +00:00
fix
This commit is contained in:
parent
06cca7145c
commit
e0047cc0ad
@ -215,6 +215,7 @@ onBeforeUnmount(() => {
|
|||||||
|
|
||||||
.chart {
|
.chart {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menus {
|
.menus {
|
||||||
|
@ -84,7 +84,7 @@ export default function useLegendProcess(legend?: LegendOptions) {
|
|||||||
prev += Number(next);
|
prev += Number(next);
|
||||||
return prev;
|
return prev;
|
||||||
}, 0);
|
}, 0);
|
||||||
item.mean = (total / data[value].length).toFixed(2);
|
item.mean = (total / data[value].length).toFixed(4);
|
||||||
if (key === 0) {
|
if (key === 0) {
|
||||||
headers.push({ value: "mean", label: "Mean" });
|
headers.push({ value: "mean", label: "Mean" });
|
||||||
}
|
}
|
||||||
|
@ -115,13 +115,11 @@ table {
|
|||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
table td,
|
|
||||||
table th {
|
table th {
|
||||||
padding: 0.5rem 1rem;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table thead th {
|
table thead th {
|
||||||
padding: 3px;
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
@ -130,7 +128,7 @@ table thead th {
|
|||||||
}
|
}
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
padding: 4px 5px;
|
padding: 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user