mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-13 15:03:14 +08:00
fix: the undefined threshold format issue (#4058)
This commit is contained in:
parent
f5b1d4146f
commit
d1acad8ee4
@ -41,7 +41,7 @@ function GridTableComponent({
|
|||||||
const idx = thresholds.findIndex(
|
const idx = thresholds.findIndex(
|
||||||
(t) => t.thresholdTableOptions === e.title,
|
(t) => t.thresholdTableOptions === e.title,
|
||||||
);
|
);
|
||||||
if (idx !== -1) {
|
if (threshold && idx !== -1) {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
style={
|
style={
|
||||||
|
Loading…
x
Reference in New Issue
Block a user