Skip to content

Commit

Permalink
fix(backend): allow adding project assignees in django admin (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras authored and MitanOmar committed Jun 3, 2024
1 parent aa017cb commit cd363e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/timed/projects/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CustomerAssigneeInline(admin.TabularInline):
extra = 0


class ProjectAssigneeInline(NestedStackedInline):
class ProjectAssigneeInline(admin.StackedInline):
autocomplete_fields = ("user",)
model = models.ProjectAssignee
extra = 0
Expand Down

0 comments on commit cd363e4

Please sign in to comment.