Skip to content

Commit 591416f

Browse files
authored
Fix for GroupTagKeySerializer. (#6006)
1 parent e73b4a9 commit 591416f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/api/serializers/models/grouptagkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def get_attrs(self, item_list, user):
1313
t.key: t.get_label()
1414
for t in
1515
TagKey.objects.filter(
16-
project_id=item_list[0].project.id, key__in=[
16+
project_id=item_list[0].project_id, key__in=[
1717
i.key for i in item_list])
1818
}
1919

0 commit comments

Comments
 (0)