Skip to content

Commit

Permalink
Fixing manual global threshold bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
AbnerBissolli committed May 26, 2023
1 parent aa8e891 commit 1ad3f5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/wx/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4399,6 +4399,8 @@ def update_global_threshold(request):
variable_name = request.GET.get('variable_name', None)
variable = Variable.objects.get(name=variable_name)

is_automatic = is_automatic == "true"

if qc_method=='range':
range_min = request.GET.get('range_min', None)
range_max = request.GET.get('range_max', None)
Expand Down

0 comments on commit 1ad3f5c

Please sign in to comment.