Skip to content

Commit 45ea5d4

Browse files
authored
Merge pull request #148 from springload/fix/remove-project-role-tags
Remove role from the project tags
2 parents 65385e8 + 6f86e8a commit 45ea5d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cdhweb/projects/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ def display_tags(self):
295295
return sorted(
296296
str(t)
297297
for t in itertools.chain(
298-
self.method.all(), self.field.all(), self.role.all()
298+
self.method.all(),
299+
self.field.all(),
299300
)
300301
)
301302

0 commit comments

Comments
 (0)