Skip to content

Commit

Permalink
Fix related name when deleting filter group
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed Nov 14, 2023
1 parent aafdcb6 commit f7b53b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nav/web/alertprofiles/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1929,7 +1929,7 @@ def filter_group_remove(request):
time_periods = TimePeriod.objects.filter(
alert_subscriptions__in=subscriptions
)
profiles = AlertProfile.objects.filter(timeperiod__in=time_periods)
profiles = AlertProfile.objects.filter(time_periods__in=time_periods)
warnings = []

try:
Expand Down

0 comments on commit f7b53b6

Please sign in to comment.