Skip to content

Commit

Permalink
fix(note): reset var name for note saving
Browse files Browse the repository at this point in the history
  • Loading branch information
psyray committed Sep 11, 2024
1 parent d3a9f6b commit 50125fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,8 @@ def post(self, request):
req = self.request
data = req.data

subdomain_id = data.get('subdomain')
scan_history_id = data.get('scan_history')
subdomain_id = data.get('subdomain_id')
scan_history_id = data.get('scan_history_id')
title = data.get('title')
description = data.get('description')
project = data.get('project')
Expand Down

0 comments on commit 50125fc

Please sign in to comment.