Skip to content

Commit

Permalink
fix: bulk issue import (#1773)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohashescobar authored Aug 2, 2023
1 parent a66dcb9 commit 9a29896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apiserver/plane/api/views/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def post(self, request, slug, project_id, service):
# if there is no default state assign any random state
if default_state is None:
default_state = State.objects.filter(
~Q(name="Triage"), sproject_id=project_id
~Q(name="Triage"), project_id=project_id
).first()

# Get the maximum sequence_id
Expand Down

0 comments on commit 9a29896

Please sign in to comment.