mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-01 07:12:00 +08:00
Merge branch 'develop' into release/v0.32.0
This commit is contained in:
commit
7faab85b4d
@ -92,9 +92,9 @@ function GridCardGraph({
|
||||
},
|
||||
],
|
||||
createDataset: undefined,
|
||||
isWarningLimit: true,
|
||||
isWarningLimit: widget.panelTypes === PANEL_TYPES.TIME_SERIES,
|
||||
}),
|
||||
[queryResponse],
|
||||
[queryResponse, widget?.panelTypes],
|
||||
);
|
||||
|
||||
const isEmptyLayout = widget?.id === PANEL_TYPES.EMPTY_WIDGET;
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { WarningOutlined } from '@ant-design/icons';
|
||||
import { Card, Tooltip, Typography } from 'antd';
|
||||
import Spinner from 'components/Spinner';
|
||||
import { PANEL_TYPES } from 'constants/queryBuilder';
|
||||
import {
|
||||
errorTooltipPosition,
|
||||
tooltipStyles,
|
||||
@ -67,7 +68,7 @@ function WidgetGraph({
|
||||
{ queryData: getWidgetQueryRange.data?.payload.data.result ?? [] },
|
||||
],
|
||||
createDataset: undefined,
|
||||
isWarningLimit: true,
|
||||
isWarningLimit: selectedWidget.panelTypes === PANEL_TYPES.TIME_SERIES,
|
||||
});
|
||||
|
||||
return (
|
||||
|
Loading…
x
Reference in New Issue
Block a user