mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Fix Admin Panel pages Organizations and Teams, where HTML Tables were broken.
Thanks to Hekatomb and xet7 ! Fixes #5429
This commit is contained in:
parent
b86a24d97a
commit
36bb5e099e
1 changed files with 4 additions and 4 deletions
|
|
@ -86,8 +86,8 @@ template(name="orgGeneral")
|
|||
+newOrgRow
|
||||
tbody
|
||||
tr
|
||||
each org in orgList
|
||||
+orgRow(orgId=org._id)
|
||||
each org in orgList
|
||||
+orgRow(orgId=org._id)
|
||||
|
||||
template(name="teamGeneral")
|
||||
table
|
||||
|
|
@ -103,8 +103,8 @@ template(name="teamGeneral")
|
|||
+newTeamRow
|
||||
tbody
|
||||
tr
|
||||
each team in teamList
|
||||
+teamRow(teamId=team._id)
|
||||
each team in teamList
|
||||
+teamRow(teamId=team._id)
|
||||
|
||||
template(name="peopleGeneral")
|
||||
#divAddOrRemoveTeamContainer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue