Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
SigNoz
Commits
93ae3517
Unverified
Commit
93ae3517
authored
2 years ago
by
Srikanth Chekuri
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge branch 'develop' into issue-1252
parents
aa068c81
4ee92b7c
issue-1252
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/container/NewWidget/LeftContainer/QuerySection/QueryBuilder/promQL/index.tsx
+2
-2
.../LeftContainer/QuerySection/QueryBuilder/promQL/index.tsx
frontend/src/container/NewWidget/LeftContainer/QuerySection/QueryBuilder/queryBuilder/index.tsx
+1
-1
...ontainer/QuerySection/QueryBuilder/queryBuilder/index.tsx
with
3 additions
and
3 deletions
+3
-3
frontend/src/container/NewWidget/LeftContainer/QuerySection/QueryBuilder/promQL/index.tsx
+
2
-
2
View file @
93ae3517
...
...
@@ -30,8 +30,8 @@ function PromQLQueryContainer({
}:
IPromQLQueryHandleChange
):
void
=>
{
const
allQueries
=
queryData
[
WIDGET_PROMQL_QUERY_KEY_NAME
];
const
currentIndexQuery
=
allQueries
[
queryIndex
];
if
(
query
)
currentIndexQuery
.
query
=
query
;
if
(
legend
)
currentIndexQuery
.
legend
=
legend
;
if
(
query
!==
undefined
)
currentIndexQuery
.
query
=
query
;
if
(
legend
!==
undefined
)
currentIndexQuery
.
legend
=
legend
;
if
(
toggleDisable
)
{
currentIndexQuery
.
disabled
=
!
currentIndexQuery
.
disabled
;
...
...
This diff is collapsed.
Click to expand it.
frontend/src/container/NewWidget/LeftContainer/QuerySection/QueryBuilder/queryBuilder/index.tsx
+
1
-
1
View file @
93ae3517
...
...
@@ -55,7 +55,7 @@ function QueryBuilderQueryContainer({
currentIndexQuery
.
aggregateOperator
=
aggregateFunction
;
}
if
(
metricName
)
{
if
(
metricName
!==
undefined
)
{
currentIndexQuery
.
metricName
=
metricName
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help